[1m[35m (20.4ms)[0m [1m[35mDROP DATABASE IF EXISTS "adopt_dont_shop_test"[0m
[1m[35m (118.0ms)[0m [1m[35mCREATE DATABASE "adopt_dont_shop_test" ENCODING = 'unicode'[0m
[1m[35mSQL (1.0ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
[1m[35m (2.4ms)[0m [1m[35mDROP TABLE IF EXISTS "pets" CASCADE[0m
[1m[35m (8.6ms)[0m [1m[35mCREATE TABLE "pets" ("id" bigserial primary key, "adoptable" boolean, "age" integer, "breed" character varying, "name" character varying, "shelter_id" bigint NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_pets_on_shelter_id" ON "pets" ("shelter_id")[0m
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "shelters" CASCADE[0m
[1m[35m (2.4ms)[0m [1m[35mCREATE TABLE "shelters" ("id" bigserial primary key, "foster_program" boolean, "name" character varying, "city" character varying, "rank" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "veterinarians" CASCADE[0m
[1m[35m (2.3ms)[0m [1m[35mCREATE TABLE "veterinarians" ("id" bigserial primary key, "on_call" boolean, "review_rating" integer, "name" character varying, "veterinary_office_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (0.6ms)[0m [1m[35mCREATE INDEX "index_veterinarians_on_veterinary_office_id" ON "veterinarians" ("veterinary_office_id")[0m
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "veterinary_offices" CASCADE[0m
[1m[35m (2.4ms)[0m [1m[35mCREATE TABLE "veterinary_offices" ("id" bigserial primary key, "boarding_services" boolean, "max_patient_capacity" integer, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (5.6ms)[0m [1m[35mALTER TABLE "pets" ADD CONSTRAINT "fk_rails_92fb5d7a05"
FOREIGN KEY (“shelter_id”)
REFERENCES "shelters" ("id")
[0m
[1m[35m (1.1ms)[0m [1m[35mALTER TABLE "veterinarians" ADD CONSTRAINT "fk_rails_d296209ae6"
FOREIGN KEY (“veterinary_office_id”)
REFERENCES "veterinary_offices" ("id")
[0m
[1m[35m (2.3ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.9ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (20210213001717)[0m
[1m[35m (0.4ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES
(20210212235502), (20210213001632), (20210212235735);
[0m
[1m[35m (2.0ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[36mActiveRecord::InternalMetadata Create (5.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "test"], ["created_at", "2021-10-23 20:56:41.406581"], ["updated_at", "2021-10-23 20:56:41.406581"]]
[1m[35m (0.2ms)[0m [1m[35mCOMMIT[0m
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
[1m[35m (0.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-23 14:56:41 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.6ms)
Completed 200 OK in 838ms (Views: 834.5ms | ActiveRecord: 0.0ms) Started GET “/pets” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (1.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (8.8ms)
Completed 200 OK in 16ms (Views: 8.7ms | ActiveRecord: 5.8ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.0ms)
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (2.6ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (4.4ms)
Completed 200 OK in 12ms (Views: 4.1ms | ActiveRecord: 5.9ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.0ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.5ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 7ms (Views: 2.5ms | ActiveRecord: 2.9ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.0ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.5ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] Rendered veterinarians/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 9ms (Views: 2.7ms | ActiveRecord: 2.7ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.576306"], ["updated_at", "2021-10-23 20:56:42.576306"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/1/pets/new” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"1"}
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 1], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (2.5ms)
Completed 200 OK in 6ms (Views: 3.2ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.591806"], ["updated_at", "2021-10-23 20:56:42.591806"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/2/pets/new” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"2"}
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (1.0ms)
Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 0.4ms) Started POST “/shelters/2/pets” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"Bumblebee", "breed"=>"Welsh Corgi", "age"=>"1", "adoptable"=>"1", "commit"=>"Save ", "shelter_id"=>"2"}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
[1m[36mPet Create (4.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "Welsh Corgi"], ["name", "Bumblebee"], ["shelter_id", 2], ["created_at", "2021-10-23 20:56:42.635973"], ["updated_at", "2021-10-23 20:56:42.635973"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Unpermitted parameters: :utf8, :commit Redirected to www.example.com/shelters/2/pets Completed 302 Found in 24ms (ActiveRecord: 12.6ms) Started GET “/shelters/2/pets” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"2"}
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (4.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 2], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (6.3ms)
Completed 200 OK in 12ms (Views: 3.0ms | ActiveRecord: 4.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.658292"], ["updated_at", "2021-10-23 20:56:42.658292"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/3/pets/new” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"3"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 3], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms) Started POST “/shelters/3/pets” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "breed"=>"", "age"=>"", "adoptable"=>"0", "commit"=>"Save ", "shelter_id"=>"3"}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 3], ["LIMIT", 1]] [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Unpermitted parameters: :utf8, :commit Redirected to www.example.com/shelters/3/pets/new Completed 302 Found in 4ms (ActiveRecord: 0.5ms) Started GET “/shelters/3/pets/new” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"3"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 3], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.1ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.677045"], ["updated_at", "2021-10-23 20:56:42.677045"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 4], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 4], ["created_at", "2021-10-23 20:56:42.678817"], ["updated_at", "2021-10-23 20:56:42.678817"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 4], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 4], ["created_at", "2021-10-23 20:56:42.680261"], ["updated_at", "2021-10-23 20:56:42.680261"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 4], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 4], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.7ms)
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.700052"], ["updated_at", "2021-10-23 20:56:42.700052"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 5], ["created_at", "2021-10-23 20:56:42.703082"], ["updated_at", "2021-10-23 20:56:42.703082"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 5], ["created_at", "2021-10-23 20:56:42.705654"], ["updated_at", "2021-10-23 20:56:42.705654"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 5], ["created_at", "2021-10-23 20:56:42.708011"], ["updated_at", "2021-10-23 20:56:42.708011"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (2.1ms)
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.719243"], ["updated_at", "2021-10-23 20:56:42.719243"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 6], ["created_at", "2021-10-23 20:56:42.721183"], ["updated_at", "2021-10-23 20:56:42.721183"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 6], ["created_at", "2021-10-23 20:56:42.723025"], ["updated_at", "2021-10-23 20:56:42.723025"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.7ms)
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.5ms) Started GET “/pets/7/edit” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"7"}
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.4ms)
Completed 200 OK in 6ms (Views: 3.5ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.742394"], ["updated_at", "2021-10-23 20:56:42.742394"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 7], ["created_at", "2021-10-23 20:56:42.744570"], ["updated_at", "2021-10-23 20:56:42.744570"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 7], ["created_at", "2021-10-23 20:56:42.746633"], ["updated_at", "2021-10-23 20:56:42.746633"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (2.5ms)
Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.4ms) Started DELETE “/pets/9” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"9"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (0.2ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 9]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 2ms (ActiveRecord: 0.7ms) Started GET “/pets” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (2.0ms)
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.782427"], ["updated_at", "2021-10-23 20:56:42.782427"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 8], ["created_at", "2021-10-23 20:56:42.784644"], ["updated_at", "2021-10-23 20:56:42.784644"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 8], ["created_at", "2021-10-23 20:56:42.786921"], ["updated_at", "2021-10-23 20:56:42.786921"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 8], ["created_at", "2021-10-23 20:56:42.788630"], ["updated_at", "2021-10-23 20:56:42.788630"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (2.4ms)
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.4ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
[1m[36mPet Load (1.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]]
[1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (3.2ms)
Completed 200 OK in 4ms (Views: 1.6ms | ActiveRecord: 2.1ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Mystery Building"], ["city", "Irvine CA"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.808259"], ["updated_at", "2021-10-23 20:56:42.808259"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 2], ["breed", "Great Dane"], ["name", "Scooby"], ["shelter_id", 9], ["created_at", "2021-10-23 20:56:42.809889"], ["updated_at", "2021-10-23 20:56:42.809889"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/14” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"14"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 14], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Mystery Building"], ["city", "Irvine CA"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.819525"], ["updated_at", "2021-10-23 20:56:42.819525"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 10], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "Great Dane"], ["name", "Scrappy"], ["shelter_id", 10], ["created_at", "2021-10-23 20:56:42.821047"], ["updated_at", "2021-10-23 20:56:42.821047"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/15” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"15"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 15], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 10], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms) Started DELETE “/pets/15” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"15"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 15], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (0.2ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 15]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 1ms (ActiveRecord: 0.7ms) Started GET “/pets” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Hollywood shelter"], ["city", "Irvine, CA"], ["rank", 7], ["created_at", "2021-10-23 20:56:42.832116"], ["updated_at", "2021-10-23 20:56:42.832116"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "George Hairlesson"], ["shelter_id", 11], ["created_at", "2021-10-23 20:56:42.833830"], ["updated_at", "2021-10-23 20:56:42.833830"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/16/edit” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"16"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 16], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Heavenly pets"], ["city", "Aurora, CO"], ["rank", 7], ["created_at", "2021-10-23 20:56:42.839581"], ["updated_at", "2021-10-23 20:56:42.839581"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "GSD"], ["name", "Charlie"], ["shelter_id", 12], ["created_at", "2021-10-23 20:56:42.841695"], ["updated_at", "2021-10-23 20:56:42.841695"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/17/edit” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"17"}
[1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 17], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms) Started PATCH “/pets/17” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"Itchy", "breed"=>"", "adoptable"=>"0", "age"=>"1", "commit"=>"Save ", "id"=>"17"}
[1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 17], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]] [1m[36mPet Update (0.6ms)[0m [1m[33mUPDATE "pets" SET "name" = $1, "age" = $2, "breed" = $3, "adoptable" = $4, "updated_at" = $5 WHERE "pets"."id" = $6[0m [["name", "Itchy"], ["age", 1], ["breed", ""], ["adoptable", false], ["updated_at", "2021-10-23 20:56:42.851054"], ["id", 17]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets/17 Completed 302 Found in 3ms (ActiveRecord: 0.9ms) Started GET “/pets/17” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"17"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 17], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Heavenly pets"], ["city", "Aurora, CO"], ["rank", 7], ["created_at", "2021-10-23 20:56:42.857329"], ["updated_at", "2021-10-23 20:56:42.857329"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "Whippet"], ["name", "Annabelle"], ["shelter_id", 13], ["created_at", "2021-10-23 20:56:42.859070"], ["updated_at", "2021-10-23 20:56:42.859070"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/18/edit” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"18"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 18], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started PATCH “/pets/18” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "breed"=>"", "adoptable"=>"0", "age"=>"", "commit"=>"Save ", "id"=>"18"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 18], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]] [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets/18/edit Completed 302 Found in 3ms (ActiveRecord: 0.5ms) Started GET “/pets/18/edit” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"18"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 18], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.5ms)[0m [1m[35mBEGIN[0m
Started GET “/shelters/new” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#new as HTML
Rendering shelters/new.html.erb within layouts/application Rendered shelters/new.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/shelters/new” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#new as HTML
Rendering shelters/new.html.erb within layouts/application Rendered shelters/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms) Started POST “/shelters” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"Houston Shelter", "city"=>"Houston", "foster_program"=>"1", "rank"=>"7", "commit"=>"Save "}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Houston Shelter"], ["city", "Houston"], ["rank", 7], ["created_at", "2021-10-23 20:56:42.888443"], ["updated_at", "2021-10-23 20:56:42.888443"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 0.8ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/shelters/new” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#new as HTML
Rendering shelters/new.html.erb within layouts/application Rendered shelters/new.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms) Started POST “/shelters” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "city"=>"", "foster_program"=>"0", "rank"=>"", "commit"=>"Save "}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters/new Completed 302 Found in 2ms (ActiveRecord: 0.2ms) Started GET “/shelters/new” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#new as HTML
Rendering shelters/new.html.erb within layouts/application Rendered shelters/new.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.906724"], ["updated_at", "2021-10-23 20:56:42.906724"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:42.907849"], ["updated_at", "2021-10-23 20:56:42.907849"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:42.908722"], ["updated_at", "2021-10-23 20:56:42.908722"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 15], ["created_at", "2021-10-23 20:56:42.909964"], ["updated_at", "2021-10-23 20:56:42.909964"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 15], ["created_at", "2021-10-23 20:56:42.911214"], ["updated_at", "2021-10-23 20:56:42.911214"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 17], ["created_at", "2021-10-23 20:56:42.912407"], ["updated_at", "2021-10-23 20:56:42.912407"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.919218"], ["updated_at", "2021-10-23 20:56:42.919218"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:42.920159"], ["updated_at", "2021-10-23 20:56:42.920159"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:42.921079"], ["updated_at", "2021-10-23 20:56:42.921079"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 18], ["created_at", "2021-10-23 20:56:42.922248"], ["updated_at", "2021-10-23 20:56:42.922248"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 18], ["created_at", "2021-10-23 20:56:42.923445"], ["updated_at", "2021-10-23 20:56:42.923445"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 20], ["created_at", "2021-10-23 20:56:42.924584"], ["updated_at", "2021-10-23 20:56:42.924584"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.931828"], ["updated_at", "2021-10-23 20:56:42.931828"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:42.932851"], ["updated_at", "2021-10-23 20:56:42.932851"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:42.933769"], ["updated_at", "2021-10-23 20:56:42.933769"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 21], ["created_at", "2021-10-23 20:56:42.934961"], ["updated_at", "2021-10-23 20:56:42.934961"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 21], ["created_at", "2021-10-23 20:56:42.936107"], ["updated_at", "2021-10-23 20:56:42.936107"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 23], ["created_at", "2021-10-23 20:56:42.937274"], ["updated_at", "2021-10-23 20:56:42.937274"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms) Started GET “/shelters?sort=pet_count” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#index as HTML
Parameters: {"sort"=>"pet_count"}
Rendering shelters/index.html.erb within layouts/application
[1m[36mShelter Load (6.6ms)[0m [1m[34mSELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC[0m
Rendered shelters/index.html.erb within layouts/application (9.5ms)
Completed 200 OK in 10ms (Views: 3.4ms | ActiveRecord: 6.6ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.956130"], ["updated_at", "2021-10-23 20:56:42.956130"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:42.957260"], ["updated_at", "2021-10-23 20:56:42.957260"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:42.958118"], ["updated_at", "2021-10-23 20:56:42.958118"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 24], ["created_at", "2021-10-23 20:56:42.959420"], ["updated_at", "2021-10-23 20:56:42.959420"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 24], ["created_at", "2021-10-23 20:56:42.960483"], ["updated_at", "2021-10-23 20:56:42.960483"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 26], ["created_at", "2021-10-23 20:56:42.961628"], ["updated_at", "2021-10-23 20:56:42.961628"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms) Started GET “/shelters/24/edit” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#edit as HTML
Parameters: {"id"=>"24"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 24], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.1ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.1ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.973997"], ["updated_at", "2021-10-23 20:56:42.973997"]]
[1m[35m (0.5ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:42.976444"], ["updated_at", "2021-10-23 20:56:42.976444"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:42.977566"], ["updated_at", "2021-10-23 20:56:42.977566"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 27], ["created_at", "2021-10-23 20:56:42.978725"], ["updated_at", "2021-10-23 20:56:42.978725"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 27], ["created_at", "2021-10-23 20:56:42.979900"], ["updated_at", "2021-10-23 20:56:42.979900"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 29], ["created_at", "2021-10-23 20:56:42.980960"], ["updated_at", "2021-10-23 20:56:42.980960"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started DELETE “/shelters/27” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#destroy as HTML
Parameters: {"id"=>"27"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 27], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 27]]
[1m[36mPet Destroy (0.8ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 31]]
[1m[36mPet Destroy (0.4ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 32]]
[1m[36mShelter Destroy (0.8ms)[0m [1m[31mDELETE FROM "shelters" WHERE "shelters"."id" = $1[0m [["id", 27]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters Completed 302 Found in 4ms (ActiveRecord: 2.5ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-23 14:56:42 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:42.998834"], ["updated_at", "2021-10-23 20:56:42.998834"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:42.999925"], ["updated_at", "2021-10-23 20:56:42.999925"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.000874"], ["updated_at", "2021-10-23 20:56:43.000874"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 30], ["created_at", "2021-10-23 20:56:43.002104"], ["updated_at", "2021-10-23 20:56:43.002104"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 30], ["created_at", "2021-10-23 20:56:43.003421"], ["updated_at", "2021-10-23 20:56:43.003421"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 32], ["created_at", "2021-10-23 20:56:43.004534"], ["updated_at", "2021-10-23 20:56:43.004534"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.013342"], ["updated_at", "2021-10-23 20:56:43.013342"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.014621"], ["updated_at", "2021-10-23 20:56:43.014621"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.015585"], ["updated_at", "2021-10-23 20:56:43.015585"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 33], ["created_at", "2021-10-23 20:56:43.017109"], ["updated_at", "2021-10-23 20:56:43.017109"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 33], ["created_at", "2021-10-23 20:56:43.018285"], ["updated_at", "2021-10-23 20:56:43.018285"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 35], ["created_at", "2021-10-23 20:56:43.019461"], ["updated_at", "2021-10-23 20:56:43.019461"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms) Started GET “/shelters?utf8=%E2%9C%93&search=RGV&commit=Search” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"RGV", "commit"=>"Search"}
Rendering shelters/index.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%RGV%')[0m
Rendered shelters/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.029783"], ["updated_at", "2021-10-23 20:56:43.029783"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.030995"], ["updated_at", "2021-10-23 20:56:43.030995"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 36], ["created_at", "2021-10-23 20:56:43.032601"], ["updated_at", "2021-10-23 20:56:43.032601"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 36], ["created_at", "2021-10-23 20:56:43.034267"], ["updated_at", "2021-10-23 20:56:43.034267"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 37], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 37], ["created_at", "2021-10-23 20:56:43.035827"], ["updated_at", "2021-10-23 20:56:43.035827"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 36], ["created_at", "2021-10-23 20:56:43.037565"], ["updated_at", "2021-10-23 20:56:43.037565"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/36/pets” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"36"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 36], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.053517"], ["updated_at", "2021-10-23 20:56:43.053517"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.055116"], ["updated_at", "2021-10-23 20:56:43.055116"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 38], ["created_at", "2021-10-23 20:56:43.056403"], ["updated_at", "2021-10-23 20:56:43.056403"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 38], ["created_at", "2021-10-23 20:56:43.057720"], ["updated_at", "2021-10-23 20:56:43.057720"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 39], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 39], ["created_at", "2021-10-23 20:56:43.059226"], ["updated_at", "2021-10-23 20:56:43.059226"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 38], ["created_at", "2021-10-23 20:56:43.060762"], ["updated_at", "2021-10-23 20:56:43.060762"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/38/pets” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"38"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 38], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.6ms) Started GET “/shelters/38/pets/new” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"38"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.071429"], ["updated_at", "2021-10-23 20:56:43.071429"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.072503"], ["updated_at", "2021-10-23 20:56:43.072503"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 40], ["created_at", "2021-10-23 20:56:43.073794"], ["updated_at", "2021-10-23 20:56:43.073794"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 40], ["created_at", "2021-10-23 20:56:43.075129"], ["updated_at", "2021-10-23 20:56:43.075129"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 41], ["created_at", "2021-10-23 20:56:43.076595"], ["updated_at", "2021-10-23 20:56:43.076595"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 40], ["created_at", "2021-10-23 20:56:43.077951"], ["updated_at", "2021-10-23 20:56:43.077951"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/40/pets” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"40"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 40], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.6ms) Started GET “/pets/48/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"48"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.088003"], ["updated_at", "2021-10-23 20:56:43.088003"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.089113"], ["updated_at", "2021-10-23 20:56:43.089113"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 42], ["created_at", "2021-10-23 20:56:43.090424"], ["updated_at", "2021-10-23 20:56:43.090424"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 42], ["created_at", "2021-10-23 20:56:43.091663"], ["updated_at", "2021-10-23 20:56:43.091663"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
[1m[36mPet Create (1.0ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 43], ["created_at", "2021-10-23 20:56:43.092937"], ["updated_at", "2021-10-23 20:56:43.092937"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 42], ["created_at", "2021-10-23 20:56:43.095038"], ["updated_at", "2021-10-23 20:56:43.095038"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/42/pets” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"42"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 42], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.6ms) Started DELETE “/pets/52” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"52"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 52], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (0.4ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 52]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 1ms (ActiveRecord: 0.8ms) Started GET “/pets” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.7ms)
Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.3ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.110148"], ["updated_at", "2021-10-23 20:56:43.110148"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.111504"], ["updated_at", "2021-10-23 20:56:43.111504"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 44], ["created_at", "2021-10-23 20:56:43.113035"], ["updated_at", "2021-10-23 20:56:43.113035"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 44], ["created_at", "2021-10-23 20:56:43.114681"], ["updated_at", "2021-10-23 20:56:43.114681"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 45], ["created_at", "2021-10-23 20:56:43.116237"], ["updated_at", "2021-10-23 20:56:43.116237"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 44], ["created_at", "2021-10-23 20:56:43.117767"], ["updated_at", "2021-10-23 20:56:43.117767"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/44/pets” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"44"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 44], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.125512"], ["updated_at", "2021-10-23 20:56:43.125512"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.126833"], ["updated_at", "2021-10-23 20:56:43.126833"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 46], ["created_at", "2021-10-23 20:56:43.128454"], ["updated_at", "2021-10-23 20:56:43.128454"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 46], ["created_at", "2021-10-23 20:56:43.130135"], ["updated_at", "2021-10-23 20:56:43.130135"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 47], ["created_at", "2021-10-23 20:56:43.131702"], ["updated_at", "2021-10-23 20:56:43.131702"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 46], ["created_at", "2021-10-23 20:56:43.133244"], ["updated_at", "2021-10-23 20:56:43.133244"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/46/pets” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"46"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 46], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms) Started GET “/shelters/46/pets?utf8=%E2%9C%93&age=3&commit=Filter” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#pets as HTML
Parameters: {"utf8"=>"✓", "age"=>"3", "commit"=>"Filter", "shelter_id"=>"46"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= '3')[0m [["shelter_id", 46], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.9ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.147568"], ["updated_at", "2021-10-23 20:56:43.147568"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.149228"], ["updated_at", "2021-10-23 20:56:43.149228"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 48], ["created_at", "2021-10-23 20:56:43.150621"], ["updated_at", "2021-10-23 20:56:43.150621"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 48], ["created_at", "2021-10-23 20:56:43.151878"], ["updated_at", "2021-10-23 20:56:43.151878"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 49], ["created_at", "2021-10-23 20:56:43.153437"], ["updated_at", "2021-10-23 20:56:43.153437"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 48], ["created_at", "2021-10-23 20:56:43.154989"], ["updated_at", "2021-10-23 20:56:43.154989"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/48/pets” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"48"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 48], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms) Started GET “/shelters/48/pets?sort=alphabetical” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#pets as HTML
Parameters: {"sort"=>"alphabetical", "shelter_id"=>"48"}
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC[0m [["shelter_id", 48], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (2.3ms)
Completed 200 OK in 4ms (Views: 2.0ms | ActiveRecord: 1.1ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.169072"], ["updated_at", "2021-10-23 20:56:43.169072"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/50” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#show as HTML
Parameters: {"id"=>"50"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 50], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
[1m[35m (0.6ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 50]]
Rendered shelters/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.7ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.177012"], ["updated_at", "2021-10-23 20:56:43.177012"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "shorthair"], ["name", "garfield"], ["shelter_id", 51], ["created_at", "2021-10-23 20:56:43.178436"], ["updated_at", "2021-10-23 20:56:43.178436"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/51” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#show as HTML
Parameters: {"id"=>"51"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 51], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 51]]
Rendered shelters/show.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 51]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.184584"], ["updated_at", "2021-10-23 20:56:43.184584"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/52” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 52], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 52]]
Rendered shelters/show.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.4ms) Started DELETE “/shelters/52” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#destroy as HTML
Parameters: {"id"=>"52"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 52], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 52]]
[1m[36mShelter Destroy (0.4ms)[0m [1m[31mDELETE FROM "shelters" WHERE "shelters"."id" = $1[0m [["id", 52]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 1.0ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (0.8ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.196674"], ["updated_at", "2021-10-23 20:56:43.196674"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/53” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#show as HTML
Parameters: {"id"=>"53"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 53], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 53]]
Rendered shelters/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms) Started GET “/shelters/53/pets” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"53"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 53], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 53], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.206441"], ["updated_at", "2021-10-23 20:56:43.206441"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/54/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#edit as HTML
Parameters: {"id"=>"54"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 54], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.212561"], ["updated_at", "2021-10-23 20:56:43.212561"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/55/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#edit as HTML
Parameters: {"id"=>"55"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.1ms) Started PATCH “/shelters/55” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"Wichita Shelter", "city"=>"Wichita", "foster_program"=>"0", "rank"=>"10", "commit"=>"Save ", "id"=>"55"}
Unpermitted parameters: :utf8, :_method, :commit
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mShelter Update (0.6ms)[0m [1m[33mUPDATE "shelters" SET "name" = $1, "city" = $2, "rank" = $3, "updated_at" = $4 WHERE "shelters"."id" = $5[0m [["name", "Wichita Shelter"], ["city", "Wichita"], ["rank", 10], ["updated_at", "2021-10-23 20:56:43.224800"], ["id", 55]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 1.1ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.231249"], ["updated_at", "2021-10-23 20:56:43.231249"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/56/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#edit as HTML
Parameters: {"id"=>"56"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/shelters/56” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "city"=>"Wichita", "foster_program"=>"0", "rank"=>"", "commit"=>"Save ", "id"=>"56"}
Unpermitted parameters: :utf8, :_method, :commit
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters/56/edit Completed 302 Found in 2ms (ActiveRecord: 0.4ms) Started GET “/shelters/56/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by SheltersController#edit as HTML
Parameters: {"id"=>"56"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (1.0ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.257053"], ["updated_at", "2021-10-23 20:56:43.257053"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/1/veterinarians/new” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"1"}
[1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 1], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.9ms)
Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.7ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.266360"], ["updated_at", "2021-10-23 20:56:43.266360"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/2/veterinarians/new” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"2"}
[1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms) Started POST “/veterinary_offices/2/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"Dr. Burstyn", "review_rating"=>"10", "on_call"=>"1", "commit"=>"Save ", "veterinary_office_id"=>"2"}
Unpermitted parameters: :utf8, :commit
[1m[36mVeterinaryOffice Load (0.5ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.8ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Dr. Burstyn"], ["veterinary_office_id", 2], ["created_at", "2021-10-23 20:56:43.288144"], ["updated_at", "2021-10-23 20:56:43.288144"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices/2/veterinarians Completed 302 Found in 14ms (ActiveRecord: 8.1ms) Started GET “/veterinary_offices/2/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"2"}
[1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 2], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (2.0ms)
Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 0.7ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.298199"], ["updated_at", "2021-10-23 20:56:43.298199"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/3/veterinarians/new” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"3"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 3], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms) Started POST “/veterinary_offices/3/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "review_rating"=>"", "on_call"=>"0", "commit"=>"Save ", "veterinary_office_id"=>"3"}
Unpermitted parameters: :utf8, :commit
[1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 3], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 3], ["LIMIT", 1]] [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices/3/veterinarians/new Completed 302 Found in 3ms (ActiveRecord: 0.7ms) Started GET “/veterinary_offices/3/veterinarians/new” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"3"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 3], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.4ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.314236"], ["updated_at", "2021-10-23 20:56:43.314236"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 4], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 4], ["created_at", "2021-10-23 20:56:43.315997"], ["updated_at", "2021-10-23 20:56:43.315997"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 4], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 4], ["created_at", "2021-10-23 20:56:43.317329"], ["updated_at", "2021-10-23 20:56:43.317329"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 4], ["LIMIT", 1]] [1m[36mCACHE VeterinaryOffice Load (0.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 4], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.325317"], ["updated_at", "2021-10-23 20:56:43.325317"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 5], ["created_at", "2021-10-23 20:56:43.326779"], ["updated_at", "2021-10-23 20:56:43.326779"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 5], ["created_at", "2021-10-23 20:56:43.328407"], ["updated_at", "2021-10-23 20:56:43.328407"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.333093"], ["updated_at", "2021-10-23 20:56:43.333093"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 6], ["created_at", "2021-10-23 20:56:43.334508"], ["updated_at", "2021-10-23 20:56:43.334508"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 6], ["created_at", "2021-10-23 20:56:43.336542"], ["updated_at", "2021-10-23 20:56:43.336542"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.1ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]] [1m[36mCACHE VeterinaryOffice Load (0.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms) Started GET “/veterinarians/6/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"6"}
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.8ms)
Completed 200 OK in 4ms (Views: 1.3ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.347978"], ["updated_at", "2021-10-23 20:56:43.347978"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 7], ["created_at", "2021-10-23 20:56:43.349463"], ["updated_at", "2021-10-23 20:56:43.349463"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 7], ["created_at", "2021-10-23 20:56:43.351098"], ["updated_at", "2021-10-23 20:56:43.351098"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]] [1m[36mCACHE VeterinaryOffice Load (0.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms) Started DELETE “/veterinarians/8” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#destroy as HTML
Parameters: {"id"=>"8"}
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Destroy (0.3ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 8]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.8ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.1ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.362909"], ["updated_at", "2021-10-23 20:56:43.362909"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 8], ["created_at", "2021-10-23 20:56:43.364375"], ["updated_at", "2021-10-23 20:56:43.364375"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/10” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#show as HTML
Parameters: {"id"=>"10"}
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 10], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.371761"], ["updated_at", "2021-10-23 20:56:43.371761"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.8ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 9], ["created_at", "2021-10-23 20:56:43.373043"], ["updated_at", "2021-10-23 20:56:43.373043"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/11” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#show as HTML
Parameters: {"id"=>"11"}
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.6ms) Started DELETE “/veterinarians/11” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#destroy as HTML
Parameters: {"id"=>"11"}
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Destroy (0.3ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 11]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.7ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.1ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] Rendered veterinarians/index.html.erb within layouts/application (0.3ms)
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-23 20:56:43.384054"], ["updated_at", "2021-10-23 20:56:43.384054"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 10], ["created_at", "2021-10-23 20:56:43.385374"], ["updated_at", "2021-10-23 20:56:43.385374"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/12/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"12"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-23 20:56:43.391893"], ["updated_at", "2021-10-23 20:56:43.391893"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 11], ["created_at", "2021-10-23 20:56:43.393522"], ["updated_at", "2021-10-23 20:56:43.393522"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/13/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"13"}
[1m[36mVeterinarian Load (0.1ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms) Started PATCH “/veterinarians/13” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"Ignacio", "on_call"=>"0", "review_rating"=>"10", "commit"=>"Save ", "id"=>"13"}
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]] [1m[36mVeterinarian Update (0.4ms)[0m [1m[33mUPDATE "veterinarians" SET "name" = $1, "on_call" = $2, "review_rating" = $3, "updated_at" = $4 WHERE "veterinarians"."id" = $5[0m [["name", "Ignacio"], ["on_call", false], ["review_rating", 10], ["updated_at", "2021-10-23 20:56:43.403552"], ["id", 13]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians/13 Completed 302 Found in 3ms (ActiveRecord: 1.0ms) Started GET “/veterinarians/13” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#show as HTML
Parameters: {"id"=>"13"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-23 20:56:43.409586"], ["updated_at", "2021-10-23 20:56:43.409586"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 12], ["created_at", "2021-10-23 20:56:43.411066"], ["updated_at", "2021-10-23 20:56:43.411066"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/14/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"14"}
[1m[36mVeterinarian Load (0.1ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 14], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms) Started PATCH “/veterinarians/14” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "on_call"=>"0", "review_rating"=>"", "commit"=>"Save ", "id"=>"14"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 14], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]] [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians/14/edit Completed 302 Found in 3ms (ActiveRecord: 0.5ms) Started GET “/veterinarians/14/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"14"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 14], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#new as HTML
Rendering veterinary_offices/new.html.erb within layouts/application Rendered veterinary_offices/new.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#new as HTML
Rendering veterinary_offices/new.html.erb within layouts/application Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms) Started POST “/veterinary_offices” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"Houston Vet Office", "boarding_services"=>"0", "max_patient_capacity"=>"75", "commit"=>"Save "}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", false], ["max_patient_capacity", 75], ["name", "Houston Vet Office"], ["created_at", "2021-10-23 20:56:43.439650"], ["updated_at", "2021-10-23 20:56:43.439650"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 0.5ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#new as HTML
Rendering veterinary_offices/new.html.erb within layouts/application Rendered veterinary_offices/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms) Started POST “/veterinary_offices” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "boarding_services"=>"0", "max_patient_capacity"=>"", "commit"=>"Save "}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices/new Completed 302 Found in 2ms (ActiveRecord: 0.1ms) Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#new as HTML
Rendering veterinary_offices/new.html.erb within layouts/application Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.6ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-23 20:56:43.456486"], ["updated_at", "2021-10-23 20:56:43.456486"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-23 20:56:43.457830"], ["updated_at", "2021-10-23 20:56:43.457830"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-23 20:56:43.458679"], ["updated_at", "2021-10-23 20:56:43.458679"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 14], ["created_at", "2021-10-23 20:56:43.459711"], ["updated_at", "2021-10-23 20:56:43.459711"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 14], ["created_at", "2021-10-23 20:56:43.460764"], ["updated_at", "2021-10-23 20:56:43.460764"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 16], ["created_at", "2021-10-23 20:56:43.462084"], ["updated_at", "2021-10-23 20:56:43.462084"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-23 20:56:43.469005"], ["updated_at", "2021-10-23 20:56:43.469005"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-23 20:56:43.470382"], ["updated_at", "2021-10-23 20:56:43.470382"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-23 20:56:43.471388"], ["updated_at", "2021-10-23 20:56:43.471388"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 17], ["created_at", "2021-10-23 20:56:43.472656"], ["updated_at", "2021-10-23 20:56:43.472656"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 17], ["created_at", "2021-10-23 20:56:43.474198"], ["updated_at", "2021-10-23 20:56:43.474198"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 19], ["created_at", "2021-10-23 20:56:43.475762"], ["updated_at", "2021-10-23 20:56:43.475762"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-23 20:56:43.483747"], ["updated_at", "2021-10-23 20:56:43.483747"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-23 20:56:43.485046"], ["updated_at", "2021-10-23 20:56:43.485046"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-23 20:56:43.486059"], ["updated_at", "2021-10-23 20:56:43.486059"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 20], ["created_at", "2021-10-23 20:56:43.487395"], ["updated_at", "2021-10-23 20:56:43.487395"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 20], ["created_at", "2021-10-23 20:56:43.488696"], ["updated_at", "2021-10-23 20:56:43.488696"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 22], ["created_at", "2021-10-23 20:56:43.490044"], ["updated_at", "2021-10-23 20:56:43.490044"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.5ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.5ms) Started GET “/veterinary_offices?sort=veterinarian_count” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#index as HTML
Parameters: {"sort"=>"veterinarian_count"}
Rendering veterinary_offices/index.html.erb within layouts/application
[1m[36mVeterinaryOffice Load (1.9ms)[0m [1m[34mSELECT veterinary_offices.*, count(veterinarians.id) AS vets_count FROM "veterinary_offices" LEFT OUTER JOIN veterinarians ON veterinarians.veterinary_office_id = veterinary_offices.id GROUP BY veterinary_offices.id ORDER BY vets_count DESC[0m
Rendered veterinary_offices/index.html.erb within layouts/application (2.5ms)
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.9ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-23 20:56:43.502108"], ["updated_at", "2021-10-23 20:56:43.502108"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-23 20:56:43.503119"], ["updated_at", "2021-10-23 20:56:43.503119"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-23 20:56:43.503912"], ["updated_at", "2021-10-23 20:56:43.503912"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 23], ["created_at", "2021-10-23 20:56:43.505113"], ["updated_at", "2021-10-23 20:56:43.505113"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 23], ["created_at", "2021-10-23 20:56:43.506384"], ["updated_at", "2021-10-23 20:56:43.506384"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 25], ["created_at", "2021-10-23 20:56:43.507623"], ["updated_at", "2021-10-23 20:56:43.507623"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/23/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"23"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 23], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.9ms)
Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.1ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-23 20:56:43.519074"], ["updated_at", "2021-10-23 20:56:43.519074"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-23 20:56:43.520057"], ["updated_at", "2021-10-23 20:56:43.520057"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-23 20:56:43.520933"], ["updated_at", "2021-10-23 20:56:43.520933"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 26], ["created_at", "2021-10-23 20:56:43.522104"], ["updated_at", "2021-10-23 20:56:43.522104"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 26], ["created_at", "2021-10-23 20:56:43.523334"], ["updated_at", "2021-10-23 20:56:43.523334"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 28], ["created_at", "2021-10-23 20:56:43.524458"], ["updated_at", "2021-10-23 20:56:43.524458"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.3ms) Started DELETE “/veterinary_offices/26” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#destroy as HTML
Parameters: {"id"=>"26"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 26], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 26]]
[1m[36mVeterinarian Destroy (0.3ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 27]]
[1m[36mVeterinarian Destroy (0.2ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 28]]
[1m[36mVeterinaryOffice Destroy (0.6ms)[0m [1m[31mDELETE FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1[0m [["id", 26]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices Completed 302 Found in 3ms (ActiveRecord: 1.7ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-23 20:56:43.539115"], ["updated_at", "2021-10-23 20:56:43.539115"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/29” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#show as HTML
Parameters: {"id"=>"29"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 29], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 29]]
Rendered veterinary_offices/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-23 20:56:43.546222"], ["updated_at", "2021-10-23 20:56:43.546222"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/30” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#show as HTML
Parameters: {"id"=>"30"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 30], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 30]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.6ms)
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 30]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 90], ["name", "Aurora vet"], ["created_at", "2021-10-23 20:56:43.551580"], ["updated_at", "2021-10-23 20:56:43.551580"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/31” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#show as HTML
Parameters: {"id"=>"31"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 31], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 31]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms) Started DELETE “/veterinary_offices/31” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#destroy as HTML
Parameters: {"id"=>"31"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 31], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 31]]
[1m[36mVeterinaryOffice Destroy (0.4ms)[0m [1m[31mDELETE FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1[0m [["id", 31]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 0.8ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 90], ["name", "Aurora vet"], ["created_at", "2021-10-23 20:56:43.563140"], ["updated_at", "2021-10-23 20:56:43.563140"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/32” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#show as HTML
Parameters: {"id"=>"32"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 32], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 32]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/32/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"32"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 32], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 32], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-23 20:56:43.571547"], ["updated_at", "2021-10-23 20:56:43.571547"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/33/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"33"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 33], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-23 20:56:43.577343"], ["updated_at", "2021-10-23 20:56:43.577343"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/34/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"34"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 34], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/veterinary_offices/34” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"Wichita vet office", "boarding_services"=>"0", "max_patient_capacity"=>"10", "commit"=>"Save ", "id"=>"34"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 34], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit, :id
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mVeterinaryOffice Update (0.5ms)[0m [1m[33mUPDATE "veterinary_offices" SET "name" = $1, "max_patient_capacity" = $2, "updated_at" = $3 WHERE "veterinary_offices"."id" = $4[0m [["name", "Wichita vet office"], ["max_patient_capacity", 10], ["updated_at", "2021-10-23 20:56:43.585866"], ["id", 34]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 0.9ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.4ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-23 20:56:43.592267"], ["updated_at", "2021-10-23 20:56:43.592267"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/35/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"35"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 35], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms) Started PATCH “/veterinary_offices/35” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "boarding_services"=>"0", "max_patient_capacity"=>"", "commit"=>"Save ", "id"=>"35"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 35], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit, :id
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices/35/edit Completed 302 Found in 2ms (ActiveRecord: 0.3ms) Started GET “/veterinary_offices/35/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"35"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 35], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.609956"], ["updated_at", "2021-10-23 20:56:43.609956"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:43.611015"], ["updated_at", "2021-10-23 20:56:43.611015"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 36], ["created_at", "2021-10-23 20:56:43.612289"], ["updated_at", "2021-10-23 20:56:43.612289"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 36], ["created_at", "2021-10-23 20:56:43.613809"], ["updated_at", "2021-10-23 20:56:43.613809"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 36], ["created_at", "2021-10-23 20:56:43.615072"], ["updated_at", "2021-10-23 20:56:43.615072"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 37], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 37], ["created_at", "2021-10-23 20:56:43.616379"], ["updated_at", "2021-10-23 20:56:43.616379"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 37], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 37], ["created_at", "2021-10-23 20:56:43.617567"], ["updated_at", "2021-10-23 20:56:43.617567"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/36/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"36"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 36], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.624945"], ["updated_at", "2021-10-23 20:56:43.624945"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:43.625923"], ["updated_at", "2021-10-23 20:56:43.625923"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 38], ["created_at", "2021-10-23 20:56:43.627226"], ["updated_at", "2021-10-23 20:56:43.627226"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 38], ["created_at", "2021-10-23 20:56:43.628562"], ["updated_at", "2021-10-23 20:56:43.628562"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 38], ["created_at", "2021-10-23 20:56:43.629840"], ["updated_at", "2021-10-23 20:56:43.629840"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 39], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 39], ["created_at", "2021-10-23 20:56:43.631118"], ["updated_at", "2021-10-23 20:56:43.631118"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 39], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 39], ["created_at", "2021-10-23 20:56:43.632373"], ["updated_at", "2021-10-23 20:56:43.632373"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/38/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"38"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 38], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.4ms) Started GET “/veterinarians/36/edit” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"36"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.641614"], ["updated_at", "2021-10-23 20:56:43.641614"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:43.642770"], ["updated_at", "2021-10-23 20:56:43.642770"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 40], ["created_at", "2021-10-23 20:56:43.644388"], ["updated_at", "2021-10-23 20:56:43.644388"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 40], ["created_at", "2021-10-23 20:56:43.645896"], ["updated_at", "2021-10-23 20:56:43.645896"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 40], ["created_at", "2021-10-23 20:56:43.647505"], ["updated_at", "2021-10-23 20:56:43.647505"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 41], ["created_at", "2021-10-23 20:56:43.649041"], ["updated_at", "2021-10-23 20:56:43.649041"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 41], ["created_at", "2021-10-23 20:56:43.650684"], ["updated_at", "2021-10-23 20:56:43.650684"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/40/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"40"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 40], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started DELETE “/veterinarians/41” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#destroy as HTML
Parameters: {"id"=>"41"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Destroy (0.6ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 41]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians Completed 302 Found in 2ms (ActiveRecord: 1.0ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]] [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]] [1m[36mCACHE VeterinaryOffice Load (0.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.6ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.664435"], ["updated_at", "2021-10-23 20:56:43.664435"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:43.665657"], ["updated_at", "2021-10-23 20:56:43.665657"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 42], ["created_at", "2021-10-23 20:56:43.667121"], ["updated_at", "2021-10-23 20:56:43.667121"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 42], ["created_at", "2021-10-23 20:56:43.668767"], ["updated_at", "2021-10-23 20:56:43.668767"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 42], ["created_at", "2021-10-23 20:56:43.670324"], ["updated_at", "2021-10-23 20:56:43.670324"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 43], ["created_at", "2021-10-23 20:56:43.671523"], ["updated_at", "2021-10-23 20:56:43.671523"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 43], ["created_at", "2021-10-23 20:56:43.672628"], ["updated_at", "2021-10-23 20:56:43.672628"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/42/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"42"}
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.7ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 42], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.4ms)
Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 1.0ms) Started GET “/veterinary_offices/42/veterinarians/new” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"42"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.6ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.683062"], ["updated_at", "2021-10-23 20:56:43.683062"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:43.684392"], ["updated_at", "2021-10-23 20:56:43.684392"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 44], ["created_at", "2021-10-23 20:56:43.686185"], ["updated_at", "2021-10-23 20:56:43.686185"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 44], ["created_at", "2021-10-23 20:56:43.687447"], ["updated_at", "2021-10-23 20:56:43.687447"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 44], ["created_at", "2021-10-23 20:56:43.688596"], ["updated_at", "2021-10-23 20:56:43.688596"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.8ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 45], ["created_at", "2021-10-23 20:56:43.689853"], ["updated_at", "2021-10-23 20:56:43.689853"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 45], ["created_at", "2021-10-23 20:56:43.691664"], ["updated_at", "2021-10-23 20:56:43.691664"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/44/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"44"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 44], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.699039"], ["updated_at", "2021-10-23 20:56:43.699039"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:43.700175"], ["updated_at", "2021-10-23 20:56:43.700175"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 46], ["created_at", "2021-10-23 20:56:43.701592"], ["updated_at", "2021-10-23 20:56:43.701592"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 46], ["created_at", "2021-10-23 20:56:43.703103"], ["updated_at", "2021-10-23 20:56:43.703103"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 46], ["created_at", "2021-10-23 20:56:43.704245"], ["updated_at", "2021-10-23 20:56:43.704245"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 47], ["created_at", "2021-10-23 20:56:43.705370"], ["updated_at", "2021-10-23 20:56:43.705370"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 47], ["created_at", "2021-10-23 20:56:43.707066"], ["updated_at", "2021-10-23 20:56:43.707066"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/46/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"46"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 46], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/46/veterinarians?utf8=%E2%9C%93&review_rating=5&commit=Filter” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"utf8"=>"✓", "review_rating"=>"5", "commit"=>"Filter", "veterinary_office_id"=>"46"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.6ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 AND (review_rating >= '5')[0m [["veterinary_office_id", 46], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.8ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.720832"], ["updated_at", "2021-10-23 20:56:43.720832"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:43.722049"], ["updated_at", "2021-10-23 20:56:43.722049"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 48], ["created_at", "2021-10-23 20:56:43.723938"], ["updated_at", "2021-10-23 20:56:43.723938"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 48], ["created_at", "2021-10-23 20:56:43.725552"], ["updated_at", "2021-10-23 20:56:43.725552"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 48], ["created_at", "2021-10-23 20:56:43.727061"], ["updated_at", "2021-10-23 20:56:43.727061"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 49], ["created_at", "2021-10-23 20:56:43.728550"], ["updated_at", "2021-10-23 20:56:43.728550"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 49], ["created_at", "2021-10-23 20:56:43.730143"], ["updated_at", "2021-10-23 20:56:43.730143"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/49/veterinarians” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"49"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 49], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/49/veterinarians?sort=alphabetical” for 127.0.0.1 at 2021-10-23 14:56:43 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"sort"=>"alphabetical", "veterinary_office_id"=>"49"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 ORDER BY "veterinarians"."name" ASC[0m [["veterinary_office_id", 49], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.744644"], ["updated_at", "2021-10-23 20:56:43.744644"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 57], ["created_at", "2021-10-23 20:56:43.746213"], ["updated_at", "2021-10-23 20:56:43.746213"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 57], ["created_at", "2021-10-23 20:56:43.747661"], ["updated_at", "2021-10-23 20:56:43.747661"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 57], ["created_at", "2021-10-23 20:56:43.748989"], ["updated_at", "2021-10-23 20:56:43.748989"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.753008"], ["updated_at", "2021-10-23 20:56:43.753008"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 58], ["created_at", "2021-10-23 20:56:43.754451"], ["updated_at", "2021-10-23 20:56:43.754451"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 58], ["created_at", "2021-10-23 20:56:43.755840"], ["updated_at", "2021-10-23 20:56:43.755840"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 58], ["created_at", "2021-10-23 20:56:43.757164"], ["updated_at", "2021-10-23 20:56:43.757164"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.762782"], ["updated_at", "2021-10-23 20:56:43.762782"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 59], ["created_at", "2021-10-23 20:56:43.764406"], ["updated_at", "2021-10-23 20:56:43.764406"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 59], ["created_at", "2021-10-23 20:56:43.765733"], ["updated_at", "2021-10-23 20:56:43.765733"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 59], ["created_at", "2021-10-23 20:56:43.767023"], ["updated_at", "2021-10-23 20:56:43.767023"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.771161"], ["updated_at", "2021-10-23 20:56:43.771161"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 60], ["created_at", "2021-10-23 20:56:43.772476"], ["updated_at", "2021-10-23 20:56:43.772476"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.9ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 60], ["created_at", "2021-10-23 20:56:43.773853"], ["updated_at", "2021-10-23 20:56:43.773853"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 60], ["created_at", "2021-10-23 20:56:43.775638"], ["updated_at", "2021-10-23 20:56:43.775638"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.778830"], ["updated_at", "2021-10-23 20:56:43.778830"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 61], ["created_at", "2021-10-23 20:56:43.780124"], ["updated_at", "2021-10-23 20:56:43.780124"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 61], ["created_at", "2021-10-23 20:56:43.781495"], ["updated_at", "2021-10-23 20:56:43.781495"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 61], ["created_at", "2021-10-23 20:56:43.782863"], ["updated_at", "2021-10-23 20:56:43.782863"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Claw%')[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.786269"], ["updated_at", "2021-10-23 20:56:43.786269"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 62], ["created_at", "2021-10-23 20:56:43.787372"], ["updated_at", "2021-10-23 20:56:43.787372"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 62], ["created_at", "2021-10-23 20:56:43.788379"], ["updated_at", "2021-10-23 20:56:43.788379"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 62], ["created_at", "2021-10-23 20:56:43.789639"], ["updated_at", "2021-10-23 20:56:43.789639"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.792158"], ["updated_at", "2021-10-23 20:56:43.792158"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 63], ["created_at", "2021-10-23 20:56:43.793653"], ["updated_at", "2021-10-23 20:56:43.793653"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 63], ["created_at", "2021-10-23 20:56:43.795198"], ["updated_at", "2021-10-23 20:56:43.795198"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 63], ["created_at", "2021-10-23 20:56:43.796289"], ["updated_at", "2021-10-23 20:56:43.796289"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.798331"], ["updated_at", "2021-10-23 20:56:43.798331"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.799223"], ["updated_at", "2021-10-23 20:56:43.799223"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.800070"], ["updated_at", "2021-10-23 20:56:43.800070"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 64], ["created_at", "2021-10-23 20:56:43.801428"], ["updated_at", "2021-10-23 20:56:43.801428"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 64], ["created_at", "2021-10-23 20:56:43.802730"], ["updated_at", "2021-10-23 20:56:43.802730"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 66], ["created_at", "2021-10-23 20:56:43.803825"], ["updated_at", "2021-10-23 20:56:43.803825"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 64], ["created_at", "2021-10-23 20:56:43.804923"], ["updated_at", "2021-10-23 20:56:43.804923"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.807439"], ["updated_at", "2021-10-23 20:56:43.807439"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.808505"], ["updated_at", "2021-10-23 20:56:43.808505"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.809366"], ["updated_at", "2021-10-23 20:56:43.809366"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 67], ["created_at", "2021-10-23 20:56:43.810517"], ["updated_at", "2021-10-23 20:56:43.810517"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 67], ["created_at", "2021-10-23 20:56:43.811576"], ["updated_at", "2021-10-23 20:56:43.811576"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 69], ["created_at", "2021-10-23 20:56:43.812730"], ["updated_at", "2021-10-23 20:56:43.812730"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 67], ["created_at", "2021-10-23 20:56:43.814029"], ["updated_at", "2021-10-23 20:56:43.814029"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.819488"], ["updated_at", "2021-10-23 20:56:43.819488"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.820520"], ["updated_at", "2021-10-23 20:56:43.820520"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.821603"], ["updated_at", "2021-10-23 20:56:43.821603"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 70], ["created_at", "2021-10-23 20:56:43.822898"], ["updated_at", "2021-10-23 20:56:43.822898"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 70], ["created_at", "2021-10-23 20:56:43.824212"], ["updated_at", "2021-10-23 20:56:43.824212"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 72], ["created_at", "2021-10-23 20:56:43.825465"], ["updated_at", "2021-10-23 20:56:43.825465"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 70], ["created_at", "2021-10-23 20:56:43.826517"], ["updated_at", "2021-10-23 20:56:43.826517"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.831958"], ["updated_at", "2021-10-23 20:56:43.831958"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.833176"], ["updated_at", "2021-10-23 20:56:43.833176"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.834284"], ["updated_at", "2021-10-23 20:56:43.834284"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 73], ["created_at", "2021-10-23 20:56:43.835623"], ["updated_at", "2021-10-23 20:56:43.835623"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 73], ["created_at", "2021-10-23 20:56:43.836977"], ["updated_at", "2021-10-23 20:56:43.836977"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 75], ["created_at", "2021-10-23 20:56:43.838358"], ["updated_at", "2021-10-23 20:56:43.838358"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 73], ["created_at", "2021-10-23 20:56:43.839722"], ["updated_at", "2021-10-23 20:56:43.839722"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.844223"], ["updated_at", "2021-10-23 20:56:43.844223"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.845347"], ["updated_at", "2021-10-23 20:56:43.845347"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.846323"], ["updated_at", "2021-10-23 20:56:43.846323"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 76], ["created_at", "2021-10-23 20:56:43.847574"], ["updated_at", "2021-10-23 20:56:43.847574"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 76], ["created_at", "2021-10-23 20:56:43.848794"], ["updated_at", "2021-10-23 20:56:43.848794"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 78], ["created_at", "2021-10-23 20:56:43.850067"], ["updated_at", "2021-10-23 20:56:43.850067"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 76], ["created_at", "2021-10-23 20:56:43.851372"], ["updated_at", "2021-10-23 20:56:43.851372"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.854521"], ["updated_at", "2021-10-23 20:56:43.854521"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.855785"], ["updated_at", "2021-10-23 20:56:43.855785"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.856970"], ["updated_at", "2021-10-23 20:56:43.856970"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 79], ["created_at", "2021-10-23 20:56:43.858307"], ["updated_at", "2021-10-23 20:56:43.858307"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 79], ["created_at", "2021-10-23 20:56:43.859342"], ["updated_at", "2021-10-23 20:56:43.859342"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 81], ["created_at", "2021-10-23 20:56:43.860682"], ["updated_at", "2021-10-23 20:56:43.860682"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 79], ["created_at", "2021-10-23 20:56:43.861966"], ["updated_at", "2021-10-23 20:56:43.861966"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.864791"], ["updated_at", "2021-10-23 20:56:43.864791"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.865954"], ["updated_at", "2021-10-23 20:56:43.865954"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.867047"], ["updated_at", "2021-10-23 20:56:43.867047"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 82], ["created_at", "2021-10-23 20:56:43.868369"], ["updated_at", "2021-10-23 20:56:43.868369"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 82], ["created_at", "2021-10-23 20:56:43.869950"], ["updated_at", "2021-10-23 20:56:43.869950"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 84], ["created_at", "2021-10-23 20:56:43.871391"], ["updated_at", "2021-10-23 20:56:43.871391"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 82], ["created_at", "2021-10-23 20:56:43.872632"], ["updated_at", "2021-10-23 20:56:43.872632"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.875174"], ["updated_at", "2021-10-23 20:56:43.875174"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.876409"], ["updated_at", "2021-10-23 20:56:43.876409"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.877524"], ["updated_at", "2021-10-23 20:56:43.877524"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 85], ["created_at", "2021-10-23 20:56:43.878895"], ["updated_at", "2021-10-23 20:56:43.878895"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 85], ["created_at", "2021-10-23 20:56:43.880392"], ["updated_at", "2021-10-23 20:56:43.880392"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 87], ["created_at", "2021-10-23 20:56:43.881935"], ["updated_at", "2021-10-23 20:56:43.881935"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 85], ["created_at", "2021-10-23 20:56:43.883512"], ["updated_at", "2021-10-23 20:56:43.883512"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (1.3ms)[0m [1m[34mSELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.889668"], ["updated_at", "2021-10-23 20:56:43.889668"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.891175"], ["updated_at", "2021-10-23 20:56:43.891175"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.892385"], ["updated_at", "2021-10-23 20:56:43.892385"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 88], ["created_at", "2021-10-23 20:56:43.893854"], ["updated_at", "2021-10-23 20:56:43.893854"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 88], ["created_at", "2021-10-23 20:56:43.895414"], ["updated_at", "2021-10-23 20:56:43.895414"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 90], ["created_at", "2021-10-23 20:56:43.897178"], ["updated_at", "2021-10-23 20:56:43.897178"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 88], ["created_at", "2021-10-23 20:56:43.898500"], ["updated_at", "2021-10-23 20:56:43.898500"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 88], ["adoptable", true]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.901032"], ["updated_at", "2021-10-23 20:56:43.901032"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.902233"], ["updated_at", "2021-10-23 20:56:43.902233"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.903374"], ["updated_at", "2021-10-23 20:56:43.903374"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 91], ["created_at", "2021-10-23 20:56:43.904746"], ["updated_at", "2021-10-23 20:56:43.904746"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 91], ["created_at", "2021-10-23 20:56:43.906218"], ["updated_at", "2021-10-23 20:56:43.906218"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 93], ["created_at", "2021-10-23 20:56:43.908138"], ["updated_at", "2021-10-23 20:56:43.908138"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 91], ["created_at", "2021-10-23 20:56:43.909252"], ["updated_at", "2021-10-23 20:56:43.909252"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC[0m [["shelter_id", 91], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.911937"], ["updated_at", "2021-10-23 20:56:43.911937"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.913131"], ["updated_at", "2021-10-23 20:56:43.913131"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.914253"], ["updated_at", "2021-10-23 20:56:43.914253"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 94], ["created_at", "2021-10-23 20:56:43.915630"], ["updated_at", "2021-10-23 20:56:43.915630"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 94], ["created_at", "2021-10-23 20:56:43.917032"], ["updated_at", "2021-10-23 20:56:43.917032"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 96], ["created_at", "2021-10-23 20:56:43.918469"], ["updated_at", "2021-10-23 20:56:43.918469"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 94], ["created_at", "2021-10-23 20:56:43.919818"], ["updated_at", "2021-10-23 20:56:43.919818"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)[0m [["shelter_id", 94], ["adoptable", true]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-23 20:56:43.923157"], ["updated_at", "2021-10-23 20:56:43.923157"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-23 20:56:43.924407"], ["updated_at", "2021-10-23 20:56:43.924407"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-23 20:56:43.925353"], ["updated_at", "2021-10-23 20:56:43.925353"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 97], ["created_at", "2021-10-23 20:56:43.926492"], ["updated_at", "2021-10-23 20:56:43.926492"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 97], ["created_at", "2021-10-23 20:56:43.927646"], ["updated_at", "2021-10-23 20:56:43.927646"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 99], ["created_at", "2021-10-23 20:56:43.928883"], ["updated_at", "2021-10-23 20:56:43.928883"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 97], ["created_at", "2021-10-23 20:56:43.930032"], ["updated_at", "2021-10-23 20:56:43.930032"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 97]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.932783"], ["updated_at", "2021-10-23 20:56:43.932783"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 50], ["created_at", "2021-10-23 20:56:43.934269"], ["updated_at", "2021-10-23 20:56:43.934269"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 50], ["created_at", "2021-10-23 20:56:43.935677"], ["updated_at", "2021-10-23 20:56:43.935677"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 50], ["created_at", "2021-10-23 20:56:43.937237"], ["updated_at", "2021-10-23 20:56:43.937237"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 50], ["created_at", "2021-10-23 20:56:43.938623"], ["updated_at", "2021-10-23 20:56:43.938623"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.942358"], ["updated_at", "2021-10-23 20:56:43.942358"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 51], ["created_at", "2021-10-23 20:56:43.943738"], ["updated_at", "2021-10-23 20:56:43.943738"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 51], ["created_at", "2021-10-23 20:56:43.945076"], ["updated_at", "2021-10-23 20:56:43.945076"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 51], ["created_at", "2021-10-23 20:56:43.946430"], ["updated_at", "2021-10-23 20:56:43.946430"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 51], ["created_at", "2021-10-23 20:56:43.947979"], ["updated_at", "2021-10-23 20:56:43.947979"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.953559"], ["updated_at", "2021-10-23 20:56:43.953559"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 52], ["created_at", "2021-10-23 20:56:43.954895"], ["updated_at", "2021-10-23 20:56:43.954895"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 52], ["created_at", "2021-10-23 20:56:43.956309"], ["updated_at", "2021-10-23 20:56:43.956309"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 52], ["created_at", "2021-10-23 20:56:43.957536"], ["updated_at", "2021-10-23 20:56:43.957536"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 52], ["created_at", "2021-10-23 20:56:43.958539"], ["updated_at", "2021-10-23 20:56:43.958539"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.963007"], ["updated_at", "2021-10-23 20:56:43.963007"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 53], ["created_at", "2021-10-23 20:56:43.964494"], ["updated_at", "2021-10-23 20:56:43.964494"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 53], ["created_at", "2021-10-23 20:56:43.965858"], ["updated_at", "2021-10-23 20:56:43.965858"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 53], ["created_at", "2021-10-23 20:56:43.967196"], ["updated_at", "2021-10-23 20:56:43.967196"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 53], ["created_at", "2021-10-23 20:56:43.968516"], ["updated_at", "2021-10-23 20:56:43.968516"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.971839"], ["updated_at", "2021-10-23 20:56:43.971839"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 54], ["created_at", "2021-10-23 20:56:43.973029"], ["updated_at", "2021-10-23 20:56:43.973029"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (1.1ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 54], ["created_at", "2021-10-23 20:56:43.974267"], ["updated_at", "2021-10-23 20:56:43.974267"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 54], ["created_at", "2021-10-23 20:56:43.976260"], ["updated_at", "2021-10-23 20:56:43.976260"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 54], ["created_at", "2021-10-23 20:56:43.977864"], ["updated_at", "2021-10-23 20:56:43.977864"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.5ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE (name ILIKE '%Ta%')[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.980786"], ["updated_at", "2021-10-23 20:56:43.980786"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 55], ["created_at", "2021-10-23 20:56:43.982221"], ["updated_at", "2021-10-23 20:56:43.982221"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 55], ["created_at", "2021-10-23 20:56:43.983843"], ["updated_at", "2021-10-23 20:56:43.983843"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 55], ["created_at", "2021-10-23 20:56:43.985231"], ["updated_at", "2021-10-23 20:56:43.985231"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 55], ["created_at", "2021-10-23 20:56:43.986418"], ["updated_at", "2021-10-23 20:56:43.986418"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.988954"], ["updated_at", "2021-10-23 20:56:43.988954"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 56], ["created_at", "2021-10-23 20:56:43.990379"], ["updated_at", "2021-10-23 20:56:43.990379"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 56], ["created_at", "2021-10-23 20:56:43.991798"], ["updated_at", "2021-10-23 20:56:43.991798"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 56], ["created_at", "2021-10-23 20:56:43.993134"], ["updated_at", "2021-10-23 20:56:43.993134"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 56], ["created_at", "2021-10-23 20:56:43.994454"], ["updated_at", "2021-10-23 20:56:43.994454"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:43.996478"], ["updated_at", "2021-10-23 20:56:43.996478"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:43.997678"], ["updated_at", "2021-10-23 20:56:43.997678"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 57], ["created_at", "2021-10-23 20:56:43.999298"], ["updated_at", "2021-10-23 20:56:43.999298"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 57], ["created_at", "2021-10-23 20:56:44.000986"], ["updated_at", "2021-10-23 20:56:44.000986"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 57], ["created_at", "2021-10-23 20:56:44.002619"], ["updated_at", "2021-10-23 20:56:44.002619"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 58], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 58], ["created_at", "2021-10-23 20:56:44.004245"], ["updated_at", "2021-10-23 20:56:44.004245"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:44.006399"], ["updated_at", "2021-10-23 20:56:44.006399"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:44.007721"], ["updated_at", "2021-10-23 20:56:44.007721"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 59], ["created_at", "2021-10-23 20:56:44.009155"], ["updated_at", "2021-10-23 20:56:44.009155"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 59], ["created_at", "2021-10-23 20:56:44.010503"], ["updated_at", "2021-10-23 20:56:44.010503"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 59], ["created_at", "2021-10-23 20:56:44.012096"], ["updated_at", "2021-10-23 20:56:44.012096"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 60], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 60], ["created_at", "2021-10-23 20:56:44.013696"], ["updated_at", "2021-10-23 20:56:44.013696"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:44.019186"], ["updated_at", "2021-10-23 20:56:44.019186"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:44.020433"], ["updated_at", "2021-10-23 20:56:44.020433"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 61], ["created_at", "2021-10-23 20:56:44.022047"], ["updated_at", "2021-10-23 20:56:44.022047"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 61], ["created_at", "2021-10-23 20:56:44.023658"], ["updated_at", "2021-10-23 20:56:44.023658"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 61], ["created_at", "2021-10-23 20:56:44.024957"], ["updated_at", "2021-10-23 20:56:44.024957"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 62], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 62], ["created_at", "2021-10-23 20:56:44.026244"], ["updated_at", "2021-10-23 20:56:44.026244"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:44.030526"], ["updated_at", "2021-10-23 20:56:44.030526"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:44.031618"], ["updated_at", "2021-10-23 20:56:44.031618"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 63], ["created_at", "2021-10-23 20:56:44.033057"], ["updated_at", "2021-10-23 20:56:44.033057"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 63], ["created_at", "2021-10-23 20:56:44.034544"], ["updated_at", "2021-10-23 20:56:44.034544"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.8ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 63], ["created_at", "2021-10-23 20:56:44.036091"], ["updated_at", "2021-10-23 20:56:44.036091"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 64], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 64], ["created_at", "2021-10-23 20:56:44.038026"], ["updated_at", "2021-10-23 20:56:44.038026"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:44.041127"], ["updated_at", "2021-10-23 20:56:44.041127"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:44.042266"], ["updated_at", "2021-10-23 20:56:44.042266"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 65], ["created_at", "2021-10-23 20:56:44.043801"], ["updated_at", "2021-10-23 20:56:44.043801"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 65], ["created_at", "2021-10-23 20:56:44.045445"], ["updated_at", "2021-10-23 20:56:44.045445"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 65], ["created_at", "2021-10-23 20:56:44.047067"], ["updated_at", "2021-10-23 20:56:44.047067"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 66], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 66], ["created_at", "2021-10-23 20:56:44.048794"], ["updated_at", "2021-10-23 20:56:44.048794"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.5ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE (name ILIKE '%Vets%')[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:44.051681"], ["updated_at", "2021-10-23 20:56:44.051681"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:44.052887"], ["updated_at", "2021-10-23 20:56:44.052887"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 67], ["created_at", "2021-10-23 20:56:44.054498"], ["updated_at", "2021-10-23 20:56:44.054498"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 67], ["created_at", "2021-10-23 20:56:44.056405"], ["updated_at", "2021-10-23 20:56:44.056405"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 67], ["created_at", "2021-10-23 20:56:44.058008"], ["updated_at", "2021-10-23 20:56:44.058008"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 68], ["created_at", "2021-10-23 20:56:44.059382"], ["updated_at", "2021-10-23 20:56:44.059382"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:44.061625"], ["updated_at", "2021-10-23 20:56:44.061625"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:44.062778"], ["updated_at", "2021-10-23 20:56:44.062778"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 69], ["created_at", "2021-10-23 20:56:44.064331"], ["updated_at", "2021-10-23 20:56:44.064331"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 69], ["created_at", "2021-10-23 20:56:44.065954"], ["updated_at", "2021-10-23 20:56:44.065954"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 69], ["created_at", "2021-10-23 20:56:44.067666"], ["updated_at", "2021-10-23 20:56:44.067666"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.8ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 70], ["created_at", "2021-10-23 20:56:44.069278"], ["updated_at", "2021-10-23 20:56:44.069278"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (1.3ms)[0m [1m[34mSELECT veterinary_offices.*, count(veterinarians.id) AS vets_count FROM "veterinary_offices" LEFT OUTER JOIN veterinarians ON veterinarians.veterinary_office_id = veterinary_offices.id GROUP BY veterinary_offices.id ORDER BY vets_count DESC[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:44.073658"], ["updated_at", "2021-10-23 20:56:44.073658"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:44.074867"], ["updated_at", "2021-10-23 20:56:44.074867"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 71], ["created_at", "2021-10-23 20:56:44.076364"], ["updated_at", "2021-10-23 20:56:44.076364"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 71], ["created_at", "2021-10-23 20:56:44.077740"], ["updated_at", "2021-10-23 20:56:44.077740"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 71], ["created_at", "2021-10-23 20:56:44.079173"], ["updated_at", "2021-10-23 20:56:44.079173"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 72], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 72], ["created_at", "2021-10-23 20:56:44.080571"], ["updated_at", "2021-10-23 20:56:44.080571"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.6ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 71]]
[1m[35m (0.6ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 72]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:44.084304"], ["updated_at", "2021-10-23 20:56:44.084304"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:44.085377"], ["updated_at", "2021-10-23 20:56:44.085377"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 73], ["created_at", "2021-10-23 20:56:44.086945"], ["updated_at", "2021-10-23 20:56:44.086945"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 73], ["created_at", "2021-10-23 20:56:44.088778"], ["updated_at", "2021-10-23 20:56:44.088778"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 73], ["created_at", "2021-10-23 20:56:44.090070"], ["updated_at", "2021-10-23 20:56:44.090070"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 74], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 74], ["created_at", "2021-10-23 20:56:44.091343"], ["updated_at", "2021-10-23 20:56:44.091343"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 ORDER BY "veterinarians"."name" ASC[0m [["veterinary_office_id", 73], ["on_call", true]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.6ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:44.094220"], ["updated_at", "2021-10-23 20:56:44.094220"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:44.095475"], ["updated_at", "2021-10-23 20:56:44.095475"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 75], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 75], ["created_at", "2021-10-23 20:56:44.097151"], ["updated_at", "2021-10-23 20:56:44.097151"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 75], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 75], ["created_at", "2021-10-23 20:56:44.098634"], ["updated_at", "2021-10-23 20:56:44.098634"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 75], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 75], ["created_at", "2021-10-23 20:56:44.100073"], ["updated_at", "2021-10-23 20:56:44.100073"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 76], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 76], ["created_at", "2021-10-23 20:56:44.101510"], ["updated_at", "2021-10-23 20:56:44.101510"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 75], ["on_call", true]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-23 20:56:44.104184"], ["updated_at", "2021-10-23 20:56:44.104184"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-23 20:56:44.105310"], ["updated_at", "2021-10-23 20:56:44.105310"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 77], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 77], ["created_at", "2021-10-23 20:56:44.106604"], ["updated_at", "2021-10-23 20:56:44.106604"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 77], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 77], ["created_at", "2021-10-23 20:56:44.107859"], ["updated_at", "2021-10-23 20:56:44.107859"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 77], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 77], ["created_at", "2021-10-23 20:56:44.109122"], ["updated_at", "2021-10-23 20:56:44.109122"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 78], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 78], ["created_at", "2021-10-23 20:56:44.110846"], ["updated_at", "2021-10-23 20:56:44.110846"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.6ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 AND (review_rating >= 9)[0m [["veterinary_office_id", 77], ["on_call", true]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.9ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (1.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
[1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
[1m[35m (63.6ms)[0m [1m[35mDROP DATABASE IF EXISTS "adopt_dont_shop_test"[0m
[1m[35m (125.5ms)[0m [1m[35mCREATE DATABASE "adopt_dont_shop_test" ENCODING = 'unicode'[0m
[1m[35mSQL (0.7ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "applications" CASCADE[0m
[1m[35m (6.8ms)[0m [1m[35mCREATE TABLE "applications" ("id" bigserial primary key, "applicant_name" character varying, "street_address" character varying, "city" character varying, "state" character varying, "zipcode" character varying, "application_status" character varying, "why" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "pets" CASCADE[0m
[1m[35m (4.8ms)[0m [1m[35mCREATE TABLE "pets" ("id" bigserial primary key, "adoptable" boolean, "age" integer, "breed" character varying, "name" character varying, "shelter_id" bigint NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_pets_on_shelter_id" ON "pets" ("shelter_id")[0m
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "shelters" CASCADE[0m
[1m[35m (2.8ms)[0m [1m[35mCREATE TABLE "shelters" ("id" bigserial primary key, "foster_program" boolean, "name" character varying, "city" character varying, "rank" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "veterinarians" CASCADE[0m
[1m[35m (2.8ms)[0m [1m[35mCREATE TABLE "veterinarians" ("id" bigserial primary key, "on_call" boolean, "review_rating" integer, "name" character varying, "veterinary_office_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_veterinarians_on_veterinary_office_id" ON "veterinarians" ("veterinary_office_id")[0m
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "veterinary_offices" CASCADE[0m
[1m[35m (2.8ms)[0m [1m[35mCREATE TABLE "veterinary_offices" ("id" bigserial primary key, "boarding_services" boolean, "max_patient_capacity" integer, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (1.8ms)[0m [1m[35mALTER TABLE "pets" ADD CONSTRAINT "fk_rails_92fb5d7a05"
FOREIGN KEY (“shelter_id”)
REFERENCES "shelters" ("id")
[0m
[1m[35m (3.1ms)[0m [1m[35mALTER TABLE "veterinarians" ADD CONSTRAINT "fk_rails_d296209ae6"
FOREIGN KEY (“veterinary_office_id”)
REFERENCES "veterinary_offices" ("id")
[0m
[1m[35m (2.2ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.3ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (20211023230147)[0m
[1m[35m (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES
(20210212235502), (20210213001632), (20210212235735), (20210213001717);
[0m
[1m[35m (2.0ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[36mActiveRecord::InternalMetadata Create (0.3ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "test"], ["created_at", "2021-10-23 23:55:43.492887"], ["updated_at", "2021-10-23 23:55:43.492887"]]
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
[1m[35m (0.9ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (1.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (1.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (1.0ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.5ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
[1m[35m (27.4ms)[0m [1m[35mDROP DATABASE IF EXISTS "adopt_dont_shop_test"[0m
[1m[35m (136.5ms)[0m [1m[35mCREATE DATABASE "adopt_dont_shop_test" ENCODING = 'unicode'[0m
[1m[35mSQL (0.3ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "application_pets" CASCADE[0m
[1m[35m (5.2ms)[0m [1m[35mCREATE TABLE "application_pets" ("id" bigserial primary key, "pet_id" bigint, "application_id" bigint, "status" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (0.6ms)[0m [1m[35mCREATE INDEX "index_application_pets_on_application_id" ON "application_pets" ("application_id")[0m
[1m[35m (0.5ms)[0m [1m[35mCREATE INDEX "index_application_pets_on_pet_id" ON "application_pets" ("pet_id")[0m
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "applications" CASCADE[0m
[1m[35m (2.2ms)[0m [1m[35mCREATE TABLE "applications" ("id" bigserial primary key, "applicant_name" character varying, "street_address" character varying, "city" character varying, "state" character varying, "zipcode" character varying, "application_status" character varying, "why" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "pets" CASCADE[0m
[1m[35m (2.3ms)[0m [1m[35mCREATE TABLE "pets" ("id" bigserial primary key, "adoptable" boolean, "age" integer, "breed" character varying, "name" character varying, "shelter_id" bigint NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (0.5ms)[0m [1m[35mCREATE INDEX "index_pets_on_shelter_id" ON "pets" ("shelter_id")[0m
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "shelters" CASCADE[0m
[1m[35m (2.9ms)[0m [1m[35mCREATE TABLE "shelters" ("id" bigserial primary key, "foster_program" boolean, "name" character varying, "city" character varying, "rank" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "veterinarians" CASCADE[0m
[1m[35m (20.2ms)[0m [1m[35mCREATE TABLE "veterinarians" ("id" bigserial primary key, "on_call" boolean, "review_rating" integer, "name" character varying, "veterinary_office_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_veterinarians_on_veterinary_office_id" ON "veterinarians" ("veterinary_office_id")[0m
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "veterinary_offices" CASCADE[0m
[1m[35m (2.5ms)[0m [1m[35mCREATE TABLE "veterinary_offices" ("id" bigserial primary key, "boarding_services" boolean, "max_patient_capacity" integer, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (1.8ms)[0m [1m[35mALTER TABLE "application_pets" ADD CONSTRAINT "fk_rails_6ac8983e3b"
FOREIGN KEY (“application_id”)
REFERENCES "applications" ("id")
[0m
[1m[35m (1.4ms)[0m [1m[35mALTER TABLE "application_pets" ADD CONSTRAINT "fk_rails_412710cd26"
FOREIGN KEY (“pet_id”)
REFERENCES "pets" ("id")
[0m
[1m[35m (1.3ms)[0m [1m[35mALTER TABLE "pets" ADD CONSTRAINT "fk_rails_92fb5d7a05"
FOREIGN KEY (“shelter_id”)
REFERENCES "shelters" ("id")
[0m
[1m[35m (1.4ms)[0m [1m[35mALTER TABLE "veterinarians" ADD CONSTRAINT "fk_rails_d296209ae6"
FOREIGN KEY (“veterinary_office_id”)
REFERENCES "veterinary_offices" ("id")
[0m
[1m[35m (2.5ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
[1m[35m (1.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.8ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (20211024000652)[0m
[1m[35m (1.6ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES
(20210212235502), (20210213001632), (20210212235735), (20211023230147), (20210213001717);
[0m
[1m[35m (2.0ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[36mActiveRecord::InternalMetadata Create (0.2ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "test"], ["created_at", "2021-10-24 00:09:39.920538"], ["updated_at", "2021-10-24 00:09:39.920538"]]
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mCOMMIT[0m
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.9ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.9ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:27:31.986035"], ["updated_at", "2021-10-24 00:27:31.986035"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (5.1ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 1], ["created_at", "2021-10-24 00:27:32.021890"], ["updated_at", "2021-10-24 00:27:32.021890"]]
[1m[35m (0.9ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 1], ["created_at", "2021-10-24 00:27:32.028969"], ["updated_at", "2021-10-24 00:27:32.028969"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 1], ["created_at", "2021-10-24 00:27:32.031008"], ["updated_at", "2021-10-24 00:27:32.031008"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:27:32.081170"], ["updated_at", "2021-10-24 00:27:32.081170"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 2], ["created_at", "2021-10-24 00:27:32.082572"], ["updated_at", "2021-10-24 00:27:32.082572"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 2], ["created_at", "2021-10-24 00:27:32.083673"], ["updated_at", "2021-10-24 00:27:32.083673"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 2], ["created_at", "2021-10-24 00:27:32.084693"], ["updated_at", "2021-10-24 00:27:32.084693"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:27:32.093123"], ["updated_at", "2021-10-24 00:27:32.093123"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 3], ["created_at", "2021-10-24 00:27:32.094846"], ["updated_at", "2021-10-24 00:27:32.094846"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 3], ["created_at", "2021-10-24 00:27:32.095969"], ["updated_at", "2021-10-24 00:27:32.095969"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 3], ["created_at", "2021-10-24 00:27:32.096961"], ["updated_at", "2021-10-24 00:27:32.096961"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:27:32.098625"], ["updated_at", "2021-10-24 00:27:32.098625"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 4], ["created_at", "2021-10-24 00:27:32.099680"], ["updated_at", "2021-10-24 00:27:32.099680"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 4], ["created_at", "2021-10-24 00:27:32.100631"], ["updated_at", "2021-10-24 00:27:32.100631"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 4], ["created_at", "2021-10-24 00:27:32.101856"], ["updated_at", "2021-10-24 00:27:32.101856"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:27:32.107045"], ["updated_at", "2021-10-24 00:27:32.107045"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 5], ["created_at", "2021-10-24 00:27:32.108113"], ["updated_at", "2021-10-24 00:27:32.108113"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 5], ["created_at", "2021-10-24 00:27:32.109261"], ["updated_at", "2021-10-24 00:27:32.109261"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 5], ["created_at", "2021-10-24 00:27:32.110536"], ["updated_at", "2021-10-24 00:27:32.110536"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:27:32.114440"], ["updated_at", "2021-10-24 00:27:32.114440"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 6], ["created_at", "2021-10-24 00:27:32.115619"], ["updated_at", "2021-10-24 00:27:32.115619"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 6], ["created_at", "2021-10-24 00:27:32.116659"], ["updated_at", "2021-10-24 00:27:32.116659"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 6], ["created_at", "2021-10-24 00:27:32.117952"], ["updated_at", "2021-10-24 00:27:32.117952"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:27:32.121559"], ["updated_at", "2021-10-24 00:27:32.121559"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 7], ["created_at", "2021-10-24 00:27:32.122848"], ["updated_at", "2021-10-24 00:27:32.122848"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 7], ["created_at", "2021-10-24 00:27:32.123844"], ["updated_at", "2021-10-24 00:27:32.123844"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 7], ["created_at", "2021-10-24 00:27:32.124918"], ["updated_at", "2021-10-24 00:27:32.124918"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (7.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Claw%')[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:27:32.136104"], ["updated_at", "2021-10-24 00:27:32.136104"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 8], ["created_at", "2021-10-24 00:27:32.137696"], ["updated_at", "2021-10-24 00:27:32.137696"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 8], ["created_at", "2021-10-24 00:27:32.138748"], ["updated_at", "2021-10-24 00:27:32.138748"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 8], ["created_at", "2021-10-24 00:27:32.139739"], ["updated_at", "2021-10-24 00:27:32.139739"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:27:32.143115"], ["updated_at", "2021-10-24 00:27:32.143115"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 9], ["created_at", "2021-10-24 00:27:32.144329"], ["updated_at", "2021-10-24 00:27:32.144329"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 9], ["created_at", "2021-10-24 00:27:32.145760"], ["updated_at", "2021-10-24 00:27:32.145760"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 9], ["created_at", "2021-10-24 00:27:32.147037"], ["updated_at", "2021-10-24 00:27:32.147037"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:29.867254"], ["updated_at", "2021-10-24 00:28:29.867254"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 10], ["created_at", "2021-10-24 00:28:29.894249"], ["updated_at", "2021-10-24 00:28:29.894249"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 10], ["created_at", "2021-10-24 00:28:29.895885"], ["updated_at", "2021-10-24 00:28:29.895885"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 10], ["created_at", "2021-10-24 00:28:29.896847"], ["updated_at", "2021-10-24 00:28:29.896847"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:29.935551"], ["updated_at", "2021-10-24 00:28:29.935551"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 11], ["created_at", "2021-10-24 00:28:29.936994"], ["updated_at", "2021-10-24 00:28:29.936994"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 11], ["created_at", "2021-10-24 00:28:29.938328"], ["updated_at", "2021-10-24 00:28:29.938328"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 11], ["created_at", "2021-10-24 00:28:29.939546"], ["updated_at", "2021-10-24 00:28:29.939546"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:29.945877"], ["updated_at", "2021-10-24 00:28:29.945877"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 12], ["created_at", "2021-10-24 00:28:29.947124"], ["updated_at", "2021-10-24 00:28:29.947124"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 12], ["created_at", "2021-10-24 00:28:29.948245"], ["updated_at", "2021-10-24 00:28:29.948245"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 12], ["created_at", "2021-10-24 00:28:29.949577"], ["updated_at", "2021-10-24 00:28:29.949577"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:29.962795"], ["updated_at", "2021-10-24 00:28:29.962795"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 13], ["created_at", "2021-10-24 00:28:29.964238"], ["updated_at", "2021-10-24 00:28:29.964238"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 13], ["created_at", "2021-10-24 00:28:29.965736"], ["updated_at", "2021-10-24 00:28:29.965736"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 13], ["created_at", "2021-10-24 00:28:29.966813"], ["updated_at", "2021-10-24 00:28:29.966813"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:29.972397"], ["updated_at", "2021-10-24 00:28:29.972397"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 14], ["created_at", "2021-10-24 00:28:29.973808"], ["updated_at", "2021-10-24 00:28:29.973808"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 14], ["created_at", "2021-10-24 00:28:29.974900"], ["updated_at", "2021-10-24 00:28:29.974900"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 14], ["created_at", "2021-10-24 00:28:29.976291"], ["updated_at", "2021-10-24 00:28:29.976291"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:29.980448"], ["updated_at", "2021-10-24 00:28:29.980448"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 15], ["created_at", "2021-10-24 00:28:29.981764"], ["updated_at", "2021-10-24 00:28:29.981764"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 15], ["created_at", "2021-10-24 00:28:29.982893"], ["updated_at", "2021-10-24 00:28:29.982893"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 15], ["created_at", "2021-10-24 00:28:29.984006"], ["updated_at", "2021-10-24 00:28:29.984006"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:29.987473"], ["updated_at", "2021-10-24 00:28:29.987473"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 16], ["created_at", "2021-10-24 00:28:29.988677"], ["updated_at", "2021-10-24 00:28:29.988677"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 16], ["created_at", "2021-10-24 00:28:29.989722"], ["updated_at", "2021-10-24 00:28:29.989722"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 16], ["created_at", "2021-10-24 00:28:29.990756"], ["updated_at", "2021-10-24 00:28:29.990756"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (1.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Claw%')[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:29.994430"], ["updated_at", "2021-10-24 00:28:29.994430"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.0ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 17], ["created_at", "2021-10-24 00:28:29.995734"], ["updated_at", "2021-10-24 00:28:29.995734"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 17], ["created_at", "2021-10-24 00:28:29.997724"], ["updated_at", "2021-10-24 00:28:29.997724"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 17], ["created_at", "2021-10-24 00:28:29.999414"], ["updated_at", "2021-10-24 00:28:29.999414"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:30.002868"], ["updated_at", "2021-10-24 00:28:30.002868"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 18], ["created_at", "2021-10-24 00:28:30.004277"], ["updated_at", "2021-10-24 00:28:30.004277"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 18], ["created_at", "2021-10-24 00:28:30.005532"], ["updated_at", "2021-10-24 00:28:30.005532"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 18], ["created_at", "2021-10-24 00:28:30.006569"], ["updated_at", "2021-10-24 00:28:30.006569"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (2.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.3ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.9ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:49.459986"], ["updated_at", "2021-10-24 00:28:49.459986"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 19], ["created_at", "2021-10-24 00:28:49.489429"], ["updated_at", "2021-10-24 00:28:49.489429"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 19], ["created_at", "2021-10-24 00:28:49.491708"], ["updated_at", "2021-10-24 00:28:49.491708"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 19], ["created_at", "2021-10-24 00:28:49.492867"], ["updated_at", "2021-10-24 00:28:49.492867"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:49.537067"], ["updated_at", "2021-10-24 00:28:49.537067"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 20], ["created_at", "2021-10-24 00:28:49.538467"], ["updated_at", "2021-10-24 00:28:49.538467"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 20], ["created_at", "2021-10-24 00:28:49.539612"], ["updated_at", "2021-10-24 00:28:49.539612"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 20], ["created_at", "2021-10-24 00:28:49.541011"], ["updated_at", "2021-10-24 00:28:49.541011"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:49.547544"], ["updated_at", "2021-10-24 00:28:49.547544"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 21], ["created_at", "2021-10-24 00:28:49.549007"], ["updated_at", "2021-10-24 00:28:49.549007"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 21], ["created_at", "2021-10-24 00:28:49.550177"], ["updated_at", "2021-10-24 00:28:49.550177"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 21], ["created_at", "2021-10-24 00:28:49.551199"], ["updated_at", "2021-10-24 00:28:49.551199"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:49.554865"], ["updated_at", "2021-10-24 00:28:49.554865"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 22], ["created_at", "2021-10-24 00:28:49.556077"], ["updated_at", "2021-10-24 00:28:49.556077"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 22], ["created_at", "2021-10-24 00:28:49.557491"], ["updated_at", "2021-10-24 00:28:49.557491"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 22], ["created_at", "2021-10-24 00:28:49.558533"], ["updated_at", "2021-10-24 00:28:49.558533"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:49.563842"], ["updated_at", "2021-10-24 00:28:49.563842"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 23], ["created_at", "2021-10-24 00:28:49.565206"], ["updated_at", "2021-10-24 00:28:49.565206"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 23], ["created_at", "2021-10-24 00:28:49.566291"], ["updated_at", "2021-10-24 00:28:49.566291"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 23], ["created_at", "2021-10-24 00:28:49.567372"], ["updated_at", "2021-10-24 00:28:49.567372"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:49.571322"], ["updated_at", "2021-10-24 00:28:49.571322"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 24], ["created_at", "2021-10-24 00:28:49.572652"], ["updated_at", "2021-10-24 00:28:49.572652"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 24], ["created_at", "2021-10-24 00:28:49.573836"], ["updated_at", "2021-10-24 00:28:49.573836"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 24], ["created_at", "2021-10-24 00:28:49.575125"], ["updated_at", "2021-10-24 00:28:49.575125"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:49.578776"], ["updated_at", "2021-10-24 00:28:49.578776"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 25], ["created_at", "2021-10-24 00:28:49.580239"], ["updated_at", "2021-10-24 00:28:49.580239"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 25], ["created_at", "2021-10-24 00:28:49.581441"], ["updated_at", "2021-10-24 00:28:49.581441"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 25], ["created_at", "2021-10-24 00:28:49.582460"], ["updated_at", "2021-10-24 00:28:49.582460"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Claw%')[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:49.586219"], ["updated_at", "2021-10-24 00:28:49.586219"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 26], ["created_at", "2021-10-24 00:28:49.587335"], ["updated_at", "2021-10-24 00:28:49.587335"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 26], ["created_at", "2021-10-24 00:28:49.588712"], ["updated_at", "2021-10-24 00:28:49.588712"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 26], ["created_at", "2021-10-24 00:28:49.589827"], ["updated_at", "2021-10-24 00:28:49.589827"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-24 00:28:49.593350"], ["updated_at", "2021-10-24 00:28:49.593350"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 27], ["created_at", "2021-10-24 00:28:49.594521"], ["updated_at", "2021-10-24 00:28:49.594521"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 27], ["created_at", "2021-10-24 00:28:49.595944"], ["updated_at", "2021-10-24 00:28:49.595944"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 27], ["created_at", "2021-10-24 00:28:49.597337"], ["updated_at", "2021-10-24 00:28:49.597337"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (2.0ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (2.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-24 22:01:01.865754"], ["updated_at", "2021-10-24 22:01:01.865754"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/1” for 127.0.0.1 at 2021-10-24 16:01:01 -0600
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.8ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-24 22:01:39.164107"], ["updated_at", "2021-10-24 22:01:39.164107"]]
[1m[35m (1.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/2” for 127.0.0.1 at 2021-10-24 16:01:39 -0600
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.8ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-24 22:03:48.259347"], ["updated_at", "2021-10-24 22:03:48.259347"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/3” for 127.0.0.1 at 2021-10-24 16:03:48 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"3"}
Completed 406 Not Acceptable in 15ms (ActiveRecord: 0.0ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.9ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.8ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-24 22:06:52.899972"], ["updated_at", "2021-10-24 22:06:52.899972"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/4” for 127.0.0.1 at 2021-10-24 16:06:52 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"4"}
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (0.6ms)
Completed 200 OK in 96ms (Views: 90.5ms | ActiveRecord: 0.0ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-24 23:59:08.462774"], ["updated_at", "2021-10-24 23:59:08.462774"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 28], ["created_at", "2021-10-24 23:59:08.496973"], ["updated_at", "2021-10-24 23:59:08.496973"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 28], ["created_at", "2021-10-24 23:59:08.499296"], ["updated_at", "2021-10-24 23:59:08.499296"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 28], ["created_at", "2021-10-24 23:59:08.500456"], ["updated_at", "2021-10-24 23:59:08.500456"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-24 23:59:08.516932"], ["updated_at", "2021-10-24 23:59:08.516932"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/5” for 127.0.0.1 at 2021-10-24 17:59:08 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"5"}
[1m[36mApplication Load (0.8ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]]
Completed 500 Internal Server Error in 7ms (ActiveRecord: 1.0ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-24 23:59:17.404859"], ["updated_at", "2021-10-24 23:59:17.404859"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 29], ["created_at", "2021-10-24 23:59:17.430446"], ["updated_at", "2021-10-24 23:59:17.430446"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 29], ["created_at", "2021-10-24 23:59:17.432820"], ["updated_at", "2021-10-24 23:59:17.432820"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 29], ["created_at", "2021-10-24 23:59:17.434071"], ["updated_at", "2021-10-24 23:59:17.434071"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-24 23:59:17.449988"], ["updated_at", "2021-10-24 23:59:17.449988"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/6” for 127.0.0.1 at 2021-10-24 17:59:17 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"6"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]]
Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.6ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-25 00:00:00.397603"], ["updated_at", "2021-10-25 00:00:00.397603"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 30], ["created_at", "2021-10-25 00:00:00.429776"], ["updated_at", "2021-10-25 00:00:00.429776"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 30], ["created_at", "2021-10-25 00:00:00.432157"], ["updated_at", "2021-10-25 00:00:00.432157"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 30], ["created_at", "2021-10-25 00:00:00.433346"], ["updated_at", "2021-10-25 00:00:00.433346"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-25 00:00:00.448130"], ["updated_at", "2021-10-25 00:00:00.448130"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/7” for 127.0.0.1 at 2021-10-24 18:00:00 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"7"}
[1m[36mApplication Load (0.5ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]]
Completed 500 Internal Server Error in 46198ms (ActiveRecord: 0.7ms)
[1m[35m (1.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-25 00:00:49.197132"], ["updated_at", "2021-10-25 00:00:49.197132"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (2.1ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 31], ["created_at", "2021-10-25 00:00:49.242049"], ["updated_at", "2021-10-25 00:00:49.242049"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 31], ["created_at", "2021-10-25 00:00:49.246106"], ["updated_at", "2021-10-25 00:00:49.246106"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 31], ["created_at", "2021-10-25 00:00:49.247490"], ["updated_at", "2021-10-25 00:00:49.247490"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (1.0ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-25 00:00:49.282642"], ["updated_at", "2021-10-25 00:00:49.282642"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/8” for 127.0.0.1 at 2021-10-24 18:00:49 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"8"}
[1m[36mApplication Load (0.8ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]]
Completed 500 Internal Server Error in 11ms (ActiveRecord: 1.0ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-25 00:01:00.383097"], ["updated_at", "2021-10-25 00:01:00.383097"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 32], ["created_at", "2021-10-25 00:01:00.414352"], ["updated_at", "2021-10-25 00:01:00.414352"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 32], ["created_at", "2021-10-25 00:01:00.416854"], ["updated_at", "2021-10-25 00:01:00.416854"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 32], ["created_at", "2021-10-25 00:01:00.418164"], ["updated_at", "2021-10-25 00:01:00.418164"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-25 00:01:00.435695"], ["updated_at", "2021-10-25 00:01:00.435695"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/9” for 127.0.0.1 at 2021-10-24 18:01:00 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"9"}
[1m[36mApplication Load (0.6ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
[1m[36mApplicationPet Load (0.7ms)[0m [1m[34mSELECT "application_pets".* FROM "application_pets" WHERE "application_pets"."application_id" = $1 LIMIT $2[0m [["application_id", 9], ["LIMIT", 11]]
[1m[36mApplicationPet Load (0.4ms)[0m [1m[34mSELECT "application_pets".* FROM "application_pets" WHERE "application_pets"."application_id" = $1[0m [["application_id", 9]]
Completed 500 Internal Server Error in 903904ms (ActiveRecord: 4.4ms)
[1m[35m (1.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-25 01:14:04.617355"], ["updated_at", "2021-10-25 01:14:04.617355"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 33], ["created_at", "2021-10-25 01:14:04.642976"], ["updated_at", "2021-10-25 01:14:04.642976"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 33], ["created_at", "2021-10-25 01:14:04.645267"], ["updated_at", "2021-10-25 01:14:04.645267"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 33], ["created_at", "2021-10-25 01:14:04.646787"], ["updated_at", "2021-10-25 01:14:04.646787"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-25 01:14:04.662513"], ["updated_at", "2021-10-25 01:14:04.662513"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/10” for 127.0.0.1 at 2021-10-24 19:14:04 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"10"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 10], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (151773.3ms)
Completed 500 Internal Server Error in 151782ms (ActiveRecord: 0.5ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-25 12:37:38.088705"], ["updated_at", "2021-10-25 12:37:38.088705"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (4.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 34], ["created_at", "2021-10-25 12:37:38.128077"], ["updated_at", "2021-10-25 12:37:38.128077"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 34], ["created_at", "2021-10-25 12:37:38.134092"], ["updated_at", "2021-10-25 12:37:38.134092"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 34], ["created_at", "2021-10-25 12:37:38.136450"], ["updated_at", "2021-10-25 12:37:38.136450"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.8ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-25 12:37:38.160951"], ["updated_at", "2021-10-25 12:37:38.160951"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (2.7ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 100], ["application_id", 11], ["created_at", "2021-10-25 12:37:38.182483"], ["updated_at", "2021-10-25 12:37:38.182483"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 101], ["application_id", 11], ["created_at", "2021-10-25 12:37:38.186421"], ["updated_at", "2021-10-25 12:37:38.186421"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/11” for 127.0.0.1 at 2021-10-25 06:37:38 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"11"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 11)[0m
Rendered applications/show.html.erb within layouts/application (5.2ms)
Completed 200 OK in 96ms (Views: 88.2ms | ActiveRecord: 2.3ms)
[1m[35m (0.5ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-25 12:38:42.150449"], ["updated_at", "2021-10-25 12:38:42.150449"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 35], ["created_at", "2021-10-25 12:38:42.192593"], ["updated_at", "2021-10-25 12:38:42.192593"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 35], ["created_at", "2021-10-25 12:38:42.196105"], ["updated_at", "2021-10-25 12:38:42.196105"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 35], ["created_at", "2021-10-25 12:38:42.197454"], ["updated_at", "2021-10-25 12:38:42.197454"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (1.1ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-25 12:38:42.229244"], ["updated_at", "2021-10-25 12:38:42.229244"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.7ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 103], ["application_id", 12], ["created_at", "2021-10-25 12:38:42.249722"], ["updated_at", "2021-10-25 12:38:42.249722"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 104], ["application_id", 12], ["created_at", "2021-10-25 12:38:42.252618"], ["updated_at", "2021-10-25 12:38:42.252618"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/12” for 127.0.0.1 at 2021-10-25 06:38:42 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"12"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (2.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 12)[0m
Rendered applications/show.html.erb within layouts/application (5.7ms)
Completed 200 OK in 86ms (Views: 77.7ms | ActiveRecord: 2.9ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:43:24.982293"], ["updated_at", "2021-10-25 21:43:24.982293"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (4.9ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
[1m[36mPet Create (6.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 36], ["created_at", "2021-10-25 21:43:25.018885"], ["updated_at", "2021-10-25 21:43:25.018885"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 36], ["created_at", "2021-10-25 21:43:25.027192"], ["updated_at", "2021-10-25 21:43:25.027192"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:25 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (8.4ms)
Completed 200 OK in 102ms (Views: 97.5ms | ActiveRecord: 0.9ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:43:25.187437"], ["updated_at", "2021-10-25 21:43:25.187437"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 37], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 37], ["created_at", "2021-10-25 21:43:25.189327"], ["updated_at", "2021-10-25 21:43:25.189327"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 37], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 37], ["created_at", "2021-10-25 21:43:25.191028"], ["updated_at", "2021-10-25 21:43:25.191028"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 37], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 37], ["created_at", "2021-10-25 21:43:25.192506"], ["updated_at", "2021-10-25 21:43:25.192506"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:25 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 37], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 37], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.8ms)
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.7ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:43:25.216386"], ["updated_at", "2021-10-25 21:43:25.216386"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 38], ["created_at", "2021-10-25 21:43:25.218094"], ["updated_at", "2021-10-25 21:43:25.218094"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 38], ["created_at", "2021-10-25 21:43:25.219480"], ["updated_at", "2021-10-25 21:43:25.219480"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:25 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms) Started GET “/pets/111/edit” for 127.0.0.1 at 2021-10-25 15:43:25 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"111"}
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 111], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.1ms)
Completed 200 OK in 5ms (Views: 2.7ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:43:25.233360"], ["updated_at", "2021-10-25 21:43:25.233360"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 39], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 39], ["created_at", "2021-10-25 21:43:25.234875"], ["updated_at", "2021-10-25 21:43:25.234875"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 39], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 39], ["created_at", "2021-10-25 21:43:25.236214"], ["updated_at", "2021-10-25 21:43:25.236214"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:25 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 39], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 39], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms) Started DELETE “/pets/113” for 127.0.0.1 at 2021-10-25 15:43:25 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"113"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 113], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (5.5ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 113]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 7ms (ActiveRecord: 5.9ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:25 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 39], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:25 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:43:25.263603"], ["updated_at", "2021-10-25 21:43:25.263603"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 40], ["created_at", "2021-10-25 21:43:25.265390"], ["updated_at", "2021-10-25 21:43:25.265390"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 40], ["created_at", "2021-10-25 21:43:25.266670"], ["updated_at", "2021-10-25 21:43:25.266670"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 40], ["created_at", "2021-10-25 21:43:25.268227"], ["updated_at", "2021-10-25 21:43:25.268227"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:25 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.5ms)
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.3ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 15:43:25 -0600 Processing by PetsController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
[1m[36mPet Load (1.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (2.6ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 1.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:25 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:43:47.756965"], ["updated_at", "2021-10-25 21:43:47.756965"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.6ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 41], ["created_at", "2021-10-25 21:43:47.788220"], ["updated_at", "2021-10-25 21:43:47.788220"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 41], ["created_at", "2021-10-25 21:43:47.790427"], ["updated_at", "2021-10-25 21:43:47.790427"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:47 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (7.1ms)
Completed 200 OK in 91ms (Views: 86.1ms | ActiveRecord: 0.8ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:43:47.935975"], ["updated_at", "2021-10-25 21:43:47.935975"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 42], ["created_at", "2021-10-25 21:43:47.937751"], ["updated_at", "2021-10-25 21:43:47.937751"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 42], ["created_at", "2021-10-25 21:43:47.939079"], ["updated_at", "2021-10-25 21:43:47.939079"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 42], ["created_at", "2021-10-25 21:43:47.940681"], ["updated_at", "2021-10-25 21:43:47.940681"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:47 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.9ms)
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.7ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:43:47.964912"], ["updated_at", "2021-10-25 21:43:47.964912"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 43], ["created_at", "2021-10-25 21:43:47.966487"], ["updated_at", "2021-10-25 21:43:47.966487"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 43], ["created_at", "2021-10-25 21:43:47.967920"], ["updated_at", "2021-10-25 21:43:47.967920"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:47 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms) Started GET “/pets/123/edit” for 127.0.0.1 at 2021-10-25 15:43:47 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"123"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 123], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.1ms)
Completed 200 OK in 5ms (Views: 2.7ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:43:47.981340"], ["updated_at", "2021-10-25 21:43:47.981340"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 44], ["created_at", "2021-10-25 21:43:47.983001"], ["updated_at", "2021-10-25 21:43:47.983001"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 44], ["created_at", "2021-10-25 21:43:47.984440"], ["updated_at", "2021-10-25 21:43:47.984440"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:47 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms) Started DELETE “/pets/125” for 127.0.0.1 at 2021-10-25 15:43:47 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"125"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 125], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (2.3ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 125]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 4ms (ActiveRecord: 2.7ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:47 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.5ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:48 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:43:48.007451"], ["updated_at", "2021-10-25 21:43:48.007451"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 45], ["created_at", "2021-10-25 21:43:48.009705"], ["updated_at", "2021-10-25 21:43:48.009705"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 45], ["created_at", "2021-10-25 21:43:48.011079"], ["updated_at", "2021-10-25 21:43:48.011079"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 45], ["created_at", "2021-10-25 21:43:48.012947"], ["updated_at", "2021-10-25 21:43:48.012947"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:48 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 15:43:48 -0600 Processing by PetsController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
[1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.5ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:43:48 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.9ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:45:28.732290"], ["updated_at", "2021-10-25 21:45:28.732290"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.6ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
[1m[36mPet Create (1.0ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 46], ["created_at", "2021-10-25 21:45:28.764992"], ["updated_at", "2021-10-25 21:45:28.764992"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 46], ["created_at", "2021-10-25 21:45:28.767287"], ["updated_at", "2021-10-25 21:45:28.767287"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:45:28 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (7.5ms)
Completed 200 OK in 93ms (Views: 88.6ms | ActiveRecord: 0.9ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:45:28.917491"], ["updated_at", "2021-10-25 21:45:28.917491"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 47], ["created_at", "2021-10-25 21:45:28.919511"], ["updated_at", "2021-10-25 21:45:28.919511"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 47], ["created_at", "2021-10-25 21:45:28.921027"], ["updated_at", "2021-10-25 21:45:28.921027"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 47], ["created_at", "2021-10-25 21:45:28.922452"], ["updated_at", "2021-10-25 21:45:28.922452"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:45:28 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.7ms)
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.5ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:45:28.947376"], ["updated_at", "2021-10-25 21:45:28.947376"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 48], ["created_at", "2021-10-25 21:45:28.948891"], ["updated_at", "2021-10-25 21:45:28.948891"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 48], ["created_at", "2021-10-25 21:45:28.950363"], ["updated_at", "2021-10-25 21:45:28.950363"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:45:28 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms) Started GET “/pets/135/edit” for 127.0.0.1 at 2021-10-25 15:45:28 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"135"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 135], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.0ms)
Completed 200 OK in 4ms (Views: 2.6ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:45:28.964038"], ["updated_at", "2021-10-25 21:45:28.964038"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 49], ["created_at", "2021-10-25 21:45:28.965514"], ["updated_at", "2021-10-25 21:45:28.965514"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 49], ["created_at", "2021-10-25 21:45:28.967191"], ["updated_at", "2021-10-25 21:45:28.967191"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:45:28 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms) Started DELETE “/pets/137” for 127.0.0.1 at 2021-10-25 15:45:28 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"137"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 137], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (1.9ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 137]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 2.3ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:45:28 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:45:28 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:45:28.990293"], ["updated_at", "2021-10-25 21:45:28.990293"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 50], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 50], ["created_at", "2021-10-25 21:45:28.991909"], ["updated_at", "2021-10-25 21:45:28.991909"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 50], ["LIMIT", 1]]
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 50], ["created_at", "2021-10-25 21:45:28.993368"], ["updated_at", "2021-10-25 21:45:28.993368"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 50], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 50], ["created_at", "2021-10-25 21:45:28.995390"], ["updated_at", "2021-10-25 21:45:28.995390"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:45:28 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 50], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 50], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 50], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.5ms)
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.3ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 15:45:29 -0600 Processing by PetsController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 50], ["LIMIT", 1]]
[1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 50], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.7ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.7ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:45:29 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 15:45:29 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"new"}
[1m[36mApplication Load (0.7ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 0], ["LIMIT", 1]]
Completed 404 Not Found in 15ms (ActiveRecord: 11.6ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.9ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:46:09.200266"], ["updated_at", "2021-10-25 21:46:09.200266"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.6ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 51], ["LIMIT", 1]]
[1m[36mPet Create (0.9ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 51], ["created_at", "2021-10-25 21:46:09.234638"], ["updated_at", "2021-10-25 21:46:09.234638"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 51], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 51], ["created_at", "2021-10-25 21:46:09.236809"], ["updated_at", "2021-10-25 21:46:09.236809"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:46:09 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 51], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 51], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (6.9ms)
Completed 200 OK in 90ms (Views: 85.8ms | ActiveRecord: 0.7ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:46:09.380182"], ["updated_at", "2021-10-25 21:46:09.380182"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 52], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 52], ["created_at", "2021-10-25 21:46:09.382260"], ["updated_at", "2021-10-25 21:46:09.382260"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 52], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 52], ["created_at", "2021-10-25 21:46:09.400943"], ["updated_at", "2021-10-25 21:46:09.400943"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 52], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 52], ["created_at", "2021-10-25 21:46:09.402495"], ["updated_at", "2021-10-25 21:46:09.402495"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:46:09 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 52], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 52], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:46:09.409083"], ["updated_at", "2021-10-25 21:46:09.409083"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 53], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 53], ["created_at", "2021-10-25 21:46:09.410670"], ["updated_at", "2021-10-25 21:46:09.410670"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 53], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 53], ["created_at", "2021-10-25 21:46:09.412339"], ["updated_at", "2021-10-25 21:46:09.412339"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:46:09 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 53], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 53], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms) Started GET “/pets/147/edit” for 127.0.0.1 at 2021-10-25 15:46:09 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"147"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 147], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.1ms)
Completed 200 OK in 4ms (Views: 2.6ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:46:09.425484"], ["updated_at", "2021-10-25 21:46:09.425484"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 54], ["LIMIT", 1]]
[1m[36mPet Create (1.0ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 54], ["created_at", "2021-10-25 21:46:09.427500"], ["updated_at", "2021-10-25 21:46:09.427500"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 54], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 54], ["created_at", "2021-10-25 21:46:09.429497"], ["updated_at", "2021-10-25 21:46:09.429497"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:46:09 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 54], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 54], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.5ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.5ms) Started DELETE “/pets/149” for 127.0.0.1 at 2021-10-25 15:46:09 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"149"}
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 149], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (1.3ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 149]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 1.9ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:46:09 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 54], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.5ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.7ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:46:09 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:46:09.453098"], ["updated_at", "2021-10-25 21:46:09.453098"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 55], ["created_at", "2021-10-25 21:46:09.454643"], ["updated_at", "2021-10-25 21:46:09.454643"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 55], ["created_at", "2021-10-25 21:46:09.455919"], ["updated_at", "2021-10-25 21:46:09.455919"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 55], ["created_at", "2021-10-25 21:46:09.457150"], ["updated_at", "2021-10-25 21:46:09.457150"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:46:09 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.7ms)
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.5ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 15:46:09 -0600 Processing by PetsController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]]
[1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.7ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.7ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:46:09 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 15:46:09 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"new"}
[1m[36mApplication Load (0.5ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 0], ["LIMIT", 1]]
Completed 404 Not Found in 14ms (ActiveRecord: 10.9ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.0ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:48:01.201329"], ["updated_at", "2021-10-25 21:48:01.201329"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
[1m[36mPet Create (0.9ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 56], ["created_at", "2021-10-25 21:48:01.235276"], ["updated_at", "2021-10-25 21:48:01.235276"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 56], ["created_at", "2021-10-25 21:48:01.237432"], ["updated_at", "2021-10-25 21:48:01.237432"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:01 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (7.8ms)
Completed 200 OK in 94ms (Views: 88.9ms | ActiveRecord: 1.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:48:01.384299"], ["updated_at", "2021-10-25 21:48:01.384299"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 57], ["created_at", "2021-10-25 21:48:01.386387"], ["updated_at", "2021-10-25 21:48:01.386387"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 57], ["created_at", "2021-10-25 21:48:01.388163"], ["updated_at", "2021-10-25 21:48:01.388163"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 57], ["created_at", "2021-10-25 21:48:01.407233"], ["updated_at", "2021-10-25 21:48:01.407233"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:01 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.6ms)
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.5ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:48:01.414209"], ["updated_at", "2021-10-25 21:48:01.414209"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 58], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 58], ["created_at", "2021-10-25 21:48:01.415696"], ["updated_at", "2021-10-25 21:48:01.415696"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 58], ["LIMIT", 1]]
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 58], ["created_at", "2021-10-25 21:48:01.417353"], ["updated_at", "2021-10-25 21:48:01.417353"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:01 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 58], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 58], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.4ms) Started GET “/pets/159/edit” for 127.0.0.1 at 2021-10-25 15:48:01 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"159"}
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 159], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.0ms)
Completed 200 OK in 4ms (Views: 2.7ms | ActiveRecord: 0.5ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:48:01.430974"], ["updated_at", "2021-10-25 21:48:01.430974"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 59], ["created_at", "2021-10-25 21:48:01.432541"], ["updated_at", "2021-10-25 21:48:01.432541"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 59], ["created_at", "2021-10-25 21:48:01.433839"], ["updated_at", "2021-10-25 21:48:01.433839"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:01 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.5ms) Started DELETE “/pets/161” for 127.0.0.1 at 2021-10-25 15:48:01 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"161"}
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 161], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (1.2ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 161]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 2.0ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:01 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:01 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:48:01.455903"], ["updated_at", "2021-10-25 21:48:01.455903"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 60], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 60], ["created_at", "2021-10-25 21:48:01.457666"], ["updated_at", "2021-10-25 21:48:01.457666"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 60], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 60], ["created_at", "2021-10-25 21:48:01.459235"], ["updated_at", "2021-10-25 21:48:01.459235"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 60], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 60], ["created_at", "2021-10-25 21:48:01.460759"], ["updated_at", "2021-10-25 21:48:01.460759"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:01 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 60], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 60], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 60], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.6ms)
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.3ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 15:48:01 -0600 Processing by PetsController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 60], ["LIMIT", 1]]
[1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 60], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.6ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.6ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:01 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 15:48:01 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"new"}
[1m[36mApplication Load (0.5ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 0], ["LIMIT", 1]]
Completed 404 Not Found in 14ms (ActiveRecord: 10.5ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.0ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:48:34.648279"], ["updated_at", "2021-10-25 21:48:34.648279"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.6ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
[1m[36mPet Create (1.0ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 61], ["created_at", "2021-10-25 21:48:34.680158"], ["updated_at", "2021-10-25 21:48:34.680158"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 61], ["created_at", "2021-10-25 21:48:34.682582"], ["updated_at", "2021-10-25 21:48:34.682582"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:34 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (7.6ms)
Completed 200 OK in 92ms (Views: 87.0ms | ActiveRecord: 1.1ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:48:34.829812"], ["updated_at", "2021-10-25 21:48:34.829812"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 62], ["LIMIT", 1]]
[1m[36mPet Create (1.1ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 62], ["created_at", "2021-10-25 21:48:34.831601"], ["updated_at", "2021-10-25 21:48:34.831601"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 62], ["LIMIT", 1]]
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 62], ["created_at", "2021-10-25 21:48:34.851339"], ["updated_at", "2021-10-25 21:48:34.851339"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 62], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 62], ["created_at", "2021-10-25 21:48:34.853287"], ["updated_at", "2021-10-25 21:48:34.853287"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:34 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 62], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 62], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.5ms)
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:48:34.859823"], ["updated_at", "2021-10-25 21:48:34.859823"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 63], ["created_at", "2021-10-25 21:48:34.861502"], ["updated_at", "2021-10-25 21:48:34.861502"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 63], ["created_at", "2021-10-25 21:48:34.862841"], ["updated_at", "2021-10-25 21:48:34.862841"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:34 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms) Started GET “/pets/171/edit” for 127.0.0.1 at 2021-10-25 15:48:34 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"171"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 171], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.1ms)
Completed 200 OK in 4ms (Views: 2.6ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:48:34.876685"], ["updated_at", "2021-10-25 21:48:34.876685"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 64], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 64], ["created_at", "2021-10-25 21:48:34.878402"], ["updated_at", "2021-10-25 21:48:34.878402"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 64], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 64], ["created_at", "2021-10-25 21:48:34.880225"], ["updated_at", "2021-10-25 21:48:34.880225"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:34 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 64], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 64], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms) Started DELETE “/pets/173” for 127.0.0.1 at 2021-10-25 15:48:34 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"173"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 173], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (2.3ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 173]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 4ms (ActiveRecord: 2.7ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:34 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 64], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:34 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 21:48:34.904053"], ["updated_at", "2021-10-25 21:48:34.904053"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 65], ["created_at", "2021-10-25 21:48:34.905599"], ["updated_at", "2021-10-25 21:48:34.905599"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 65], ["created_at", "2021-10-25 21:48:34.907010"], ["updated_at", "2021-10-25 21:48:34.907010"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 65], ["created_at", "2021-10-25 21:48:34.908585"], ["updated_at", "2021-10-25 21:48:34.908585"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:34 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.6ms)
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.4ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 15:48:34 -0600 Processing by PetsController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
[1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.6ms)
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.6ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 15:48:34 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 15:48:34 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"new"}
[1m[36mApplication Load (0.5ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 0], ["LIMIT", 1]]
Completed 404 Not Found in 18ms (ActiveRecord: 10.1ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (2.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.1ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:00:58.872142"], ["updated_at", "2021-10-25 22:00:58.872142"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 66], ["LIMIT", 1]]
[1m[36mPet Create (1.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 66], ["created_at", "2021-10-25 22:00:58.905215"], ["updated_at", "2021-10-25 22:00:58.905215"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 66], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 66], ["created_at", "2021-10-25 22:00:58.907671"], ["updated_at", "2021-10-25 22:00:58.907671"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:00:58 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 66], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 66], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (7.5ms)
Completed 200 OK in 92ms (Views: 87.1ms | ActiveRecord: 0.8ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:00:59.061308"], ["updated_at", "2021-10-25 22:00:59.061308"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 67], ["created_at", "2021-10-25 22:00:59.063238"], ["updated_at", "2021-10-25 22:00:59.063238"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.7ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
[1m[36mPet Create (0.9ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 67], ["created_at", "2021-10-25 22:00:59.083421"], ["updated_at", "2021-10-25 22:00:59.083421"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 67], ["created_at", "2021-10-25 22:00:59.085589"], ["updated_at", "2021-10-25 22:00:59.085589"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:00:59 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:00:59.092454"], ["updated_at", "2021-10-25 22:00:59.092454"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 68], ["created_at", "2021-10-25 22:00:59.093736"], ["updated_at", "2021-10-25 22:00:59.093736"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 68], ["created_at", "2021-10-25 22:00:59.095199"], ["updated_at", "2021-10-25 22:00:59.095199"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:00:59 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms) Started GET “/pets/183/edit” for 127.0.0.1 at 2021-10-25 16:00:59 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"183"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 183], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.0ms)
Completed 200 OK in 4ms (Views: 2.6ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:00:59.108746"], ["updated_at", "2021-10-25 22:00:59.108746"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 69], ["created_at", "2021-10-25 22:00:59.110328"], ["updated_at", "2021-10-25 22:00:59.110328"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 69], ["created_at", "2021-10-25 22:00:59.111747"], ["updated_at", "2021-10-25 22:00:59.111747"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:00:59 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.3ms) Started DELETE “/pets/185” for 127.0.0.1 at 2021-10-25 16:00:59 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"185"}
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 185], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (1.4ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 185]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 2.1ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:00:59 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:00:59 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:00:59.134824"], ["updated_at", "2021-10-25 22:00:59.134824"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 70], ["created_at", "2021-10-25 22:00:59.136609"], ["updated_at", "2021-10-25 22:00:59.136609"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 70], ["created_at", "2021-10-25 22:00:59.137855"], ["updated_at", "2021-10-25 22:00:59.137855"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 70], ["created_at", "2021-10-25 22:00:59.139031"], ["updated_at", "2021-10-25 22:00:59.139031"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:00:59 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 16:00:59 -0600 Processing by PetsController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
[1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.8ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.8ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:00:59 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 16:00:59 -0600 Processing by ApplicationsController#new as HTML
Rendering applications/new.html.erb within layouts/application Rendered applications/new.html.erb within layouts/application (0.1ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:01:17.442755"], ["updated_at", "2021-10-25 22:01:17.442755"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.7ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
[1m[36mPet Create (1.0ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 71], ["created_at", "2021-10-25 22:01:17.479267"], ["updated_at", "2021-10-25 22:01:17.479267"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
[1m[36mPet Create (0.9ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 71], ["created_at", "2021-10-25 22:01:17.482029"], ["updated_at", "2021-10-25 22:01:17.482029"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:01:17 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (6.6ms)
Completed 200 OK in 90ms (Views: 84.9ms | ActiveRecord: 0.8ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:01:17.635255"], ["updated_at", "2021-10-25 22:01:17.635255"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 72], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 72], ["created_at", "2021-10-25 22:01:17.637354"], ["updated_at", "2021-10-25 22:01:17.637354"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 72], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 72], ["created_at", "2021-10-25 22:01:17.638721"], ["updated_at", "2021-10-25 22:01:17.638721"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 72], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 72], ["created_at", "2021-10-25 22:01:17.640055"], ["updated_at", "2021-10-25 22:01:17.640055"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:01:17 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 72], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 72], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:01:17.646444"], ["updated_at", "2021-10-25 22:01:17.646444"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 73], ["created_at", "2021-10-25 22:01:17.647919"], ["updated_at", "2021-10-25 22:01:17.647919"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 73], ["created_at", "2021-10-25 22:01:17.649684"], ["updated_at", "2021-10-25 22:01:17.649684"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:01:17 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.5ms) Started GET “/pets/195/edit” for 127.0.0.1 at 2021-10-25 16:01:17 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"195"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 195], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (1.8ms)
Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:01:17.662797"], ["updated_at", "2021-10-25 22:01:17.662797"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 74], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 74], ["created_at", "2021-10-25 22:01:17.664213"], ["updated_at", "2021-10-25 22:01:17.664213"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 74], ["LIMIT", 1]]
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 74], ["created_at", "2021-10-25 22:01:17.665357"], ["updated_at", "2021-10-25 22:01:17.665357"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:01:17 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 74], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 74], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms) Started DELETE “/pets/197” for 127.0.0.1 at 2021-10-25 16:01:17 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"197"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 197], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (2.0ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 197]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 4ms (ActiveRecord: 2.5ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:01:17 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 74], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:01:17 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:01:17.687503"], ["updated_at", "2021-10-25 22:01:17.687503"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 75], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 75], ["created_at", "2021-10-25 22:01:17.689265"], ["updated_at", "2021-10-25 22:01:17.689265"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 75], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 75], ["created_at", "2021-10-25 22:01:17.690509"], ["updated_at", "2021-10-25 22:01:17.690509"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 75], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 75], ["created_at", "2021-10-25 22:01:17.691878"], ["updated_at", "2021-10-25 22:01:17.691878"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:01:17 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 75], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 75], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 75], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.5ms)
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 16:01:17 -0600 Processing by PetsController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
[1m[36mPet Load (1.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 75], ["LIMIT", 1]]
[1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 75], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (2.2ms)
Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 1.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:01:17 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 16:01:17 -0600 Processing by ApplicationsController#new as HTML
Rendering applications/new.html.erb within layouts/application Rendered applications/new.html.erb within layouts/application (0.2ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.0ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:06.953343"], ["updated_at", "2021-10-25 22:45:06.953343"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 76], ["LIMIT", 1]]
[1m[36mPet Create (1.0ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 76], ["created_at", "2021-10-25 22:45:06.986105"], ["updated_at", "2021-10-25 22:45:06.986105"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 76], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 76], ["created_at", "2021-10-25 22:45:06.988467"], ["updated_at", "2021-10-25 22:45:06.988467"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:06 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 76], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 76], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (7.8ms)
Completed 200 OK in 95ms (Views: 90.2ms | ActiveRecord: 0.9ms)
[1m[35m (0.5ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:07.144756"], ["updated_at", "2021-10-25 22:45:07.144756"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 77], ["LIMIT", 1]]
[1m[36mPet Create (0.9ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 77], ["created_at", "2021-10-25 22:45:07.146608"], ["updated_at", "2021-10-25 22:45:07.146608"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 77], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 77], ["created_at", "2021-10-25 22:45:07.166172"], ["updated_at", "2021-10-25 22:45:07.166172"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 77], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 77], ["created_at", "2021-10-25 22:45:07.167561"], ["updated_at", "2021-10-25 22:45:07.167561"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:07 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 77], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 77], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.7ms)
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.6ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:07.174271"], ["updated_at", "2021-10-25 22:45:07.174271"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 78], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 78], ["created_at", "2021-10-25 22:45:07.175791"], ["updated_at", "2021-10-25 22:45:07.175791"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 78], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 78], ["created_at", "2021-10-25 22:45:07.177175"], ["updated_at", "2021-10-25 22:45:07.177175"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:07 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 78], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 78], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms) Started GET “/pets/207/edit” for 127.0.0.1 at 2021-10-25 16:45:07 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"207"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 207], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.0ms)
Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:07.190014"], ["updated_at", "2021-10-25 22:45:07.190014"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 79], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 79], ["created_at", "2021-10-25 22:45:07.191627"], ["updated_at", "2021-10-25 22:45:07.191627"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 79], ["LIMIT", 1]]
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 79], ["created_at", "2021-10-25 22:45:07.192883"], ["updated_at", "2021-10-25 22:45:07.192883"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:07 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 79], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 79], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms) Started DELETE “/pets/209” for 127.0.0.1 at 2021-10-25 16:45:07 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"209"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 209], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (1.7ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 209]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 2.3ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:07 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 79], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:07 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:07.214440"], ["updated_at", "2021-10-25 22:45:07.214440"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 80], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 80], ["created_at", "2021-10-25 22:45:07.215930"], ["updated_at", "2021-10-25 22:45:07.215930"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 80], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 80], ["created_at", "2021-10-25 22:45:07.217165"], ["updated_at", "2021-10-25 22:45:07.217165"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 80], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 80], ["created_at", "2021-10-25 22:45:07.218706"], ["updated_at", "2021-10-25 22:45:07.218706"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:07 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 80], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 80], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 80], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.5ms)
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.3ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 16:45:07 -0600 Processing by PetsController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 80], ["LIMIT", 1]]
[1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 80], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.7ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.7ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:07 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 16:45:07 -0600 Processing by ApplicationsController#new as HTML
Rendering applications/new.html.erb within layouts/application Rendered applications/new.html.erb within layouts/application (0.1ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.9ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:19.000366"], ["updated_at", "2021-10-25 22:45:19.000366"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 81], ["LIMIT", 1]]
[1m[36mPet Create (1.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 81], ["created_at", "2021-10-25 22:45:19.037758"], ["updated_at", "2021-10-25 22:45:19.037758"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 81], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 81], ["created_at", "2021-10-25 22:45:19.041643"], ["updated_at", "2021-10-25 22:45:19.041643"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:19 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (1.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 81], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 81], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (8.2ms)
Completed 200 OK in 92ms (Views: 86.3ms | ActiveRecord: 1.5ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:19.194519"], ["updated_at", "2021-10-25 22:45:19.194519"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 82], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 82], ["created_at", "2021-10-25 22:45:19.196382"], ["updated_at", "2021-10-25 22:45:19.196382"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 82], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 82], ["created_at", "2021-10-25 22:45:19.198079"], ["updated_at", "2021-10-25 22:45:19.198079"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 82], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 82], ["created_at", "2021-10-25 22:45:19.199331"], ["updated_at", "2021-10-25 22:45:19.199331"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:19 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 82], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 82], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:19.205376"], ["updated_at", "2021-10-25 22:45:19.205376"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 83], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 83], ["created_at", "2021-10-25 22:45:19.206992"], ["updated_at", "2021-10-25 22:45:19.206992"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 83], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 83], ["created_at", "2021-10-25 22:45:19.208364"], ["updated_at", "2021-10-25 22:45:19.208364"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:19 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 83], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 83], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms) Started GET “/pets/219/edit” for 127.0.0.1 at 2021-10-25 16:45:19 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"219"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 219], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (1.9ms)
Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.5ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:19.221741"], ["updated_at", "2021-10-25 22:45:19.221741"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 84], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 84], ["created_at", "2021-10-25 22:45:19.223237"], ["updated_at", "2021-10-25 22:45:19.223237"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 84], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 84], ["created_at", "2021-10-25 22:45:19.224497"], ["updated_at", "2021-10-25 22:45:19.224497"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:19 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 84], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 84], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.4ms) Started DELETE “/pets/221” for 127.0.0.1 at 2021-10-25 16:45:19 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"221"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 221], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (2.2ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 221]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 4ms (ActiveRecord: 2.6ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:19 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 84], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:19 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.8ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:19.248073"], ["updated_at", "2021-10-25 22:45:19.248073"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 85], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 85], ["created_at", "2021-10-25 22:45:19.249581"], ["updated_at", "2021-10-25 22:45:19.249581"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 85], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 85], ["created_at", "2021-10-25 22:45:19.250820"], ["updated_at", "2021-10-25 22:45:19.250820"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 85], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 85], ["created_at", "2021-10-25 22:45:19.252305"], ["updated_at", "2021-10-25 22:45:19.252305"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:19 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 85], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 85], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 85], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.8ms)
Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.5ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 16:45:19 -0600 Processing by PetsController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 85], ["LIMIT", 1]]
[1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 85], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.7ms)
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.7ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:19 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 16:45:19 -0600 Processing by ApplicationsController#new as HTML
Rendering applications/new.html.erb within layouts/application Rendered applications/new.html.erb within layouts/application (0.1ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:43.824856"], ["updated_at", "2021-10-25 22:45:43.824856"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 86], ["LIMIT", 1]]
[1m[36mPet Create (0.9ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 86], ["created_at", "2021-10-25 22:45:43.863552"], ["updated_at", "2021-10-25 22:45:43.863552"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 86], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 86], ["created_at", "2021-10-25 22:45:43.867086"], ["updated_at", "2021-10-25 22:45:43.867086"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:43 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 86], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 86], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (7.4ms)
Completed 200 OK in 88ms (Views: 83.6ms | ActiveRecord: 0.9ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.9ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:44.020453"], ["updated_at", "2021-10-25 22:45:44.020453"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 87], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 87], ["created_at", "2021-10-25 22:45:44.022877"], ["updated_at", "2021-10-25 22:45:44.022877"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 87], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 87], ["created_at", "2021-10-25 22:45:44.024413"], ["updated_at", "2021-10-25 22:45:44.024413"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 87], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 87], ["created_at", "2021-10-25 22:45:44.026172"], ["updated_at", "2021-10-25 22:45:44.026172"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:44 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 87], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 87], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:44.032059"], ["updated_at", "2021-10-25 22:45:44.032059"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 88], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 88], ["created_at", "2021-10-25 22:45:44.033576"], ["updated_at", "2021-10-25 22:45:44.033576"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 88], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 88], ["created_at", "2021-10-25 22:45:44.035101"], ["updated_at", "2021-10-25 22:45:44.035101"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:44 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 88], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 88], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.5ms) Started GET “/pets/231/edit” for 127.0.0.1 at 2021-10-25 16:45:44 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"231"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 231], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (1.9ms)
Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:44.046658"], ["updated_at", "2021-10-25 22:45:44.046658"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 89], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 89], ["created_at", "2021-10-25 22:45:44.047945"], ["updated_at", "2021-10-25 22:45:44.047945"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 89], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 89], ["created_at", "2021-10-25 22:45:44.049453"], ["updated_at", "2021-10-25 22:45:44.049453"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:44 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 89], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 89], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms) Started DELETE “/pets/233” for 127.0.0.1 at 2021-10-25 16:45:44 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"233"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 233], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (1.5ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 233]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 2.0ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:44 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 89], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:44 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 22:45:44.070809"], ["updated_at", "2021-10-25 22:45:44.070809"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 90], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 90], ["created_at", "2021-10-25 22:45:44.072842"], ["updated_at", "2021-10-25 22:45:44.072842"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 90], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 90], ["created_at", "2021-10-25 22:45:44.074837"], ["updated_at", "2021-10-25 22:45:44.074837"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 90], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 90], ["created_at", "2021-10-25 22:45:44.076363"], ["updated_at", "2021-10-25 22:45:44.076363"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:44 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 90], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 90], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 90], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 16:45:44 -0600 Processing by PetsController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
[1m[36mPet Load (1.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 90], ["LIMIT", 1]]
[1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 90], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (2.3ms)
Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 1.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 16:45:44 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 16:45:44 -0600 Processing by ApplicationsController#new as HTML
Rendering applications/new.html.erb within layouts/application Rendered applications/new.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:00:02.682985"], ["updated_at", "2021-10-25 23:00:02.682985"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 91], ["LIMIT", 1]]
[1m[36mPet Create (1.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 91], ["created_at", "2021-10-25 23:00:02.715370"], ["updated_at", "2021-10-25 23:00:02.715370"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 91], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 91], ["created_at", "2021-10-25 23:00:02.718066"], ["updated_at", "2021-10-25 23:00:02.718066"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 91], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 91], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (7.7ms)
Completed 200 OK in 100ms (Views: 95.2ms | ActiveRecord: 0.8ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:00:02.874325"], ["updated_at", "2021-10-25 23:00:02.874325"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 92], ["LIMIT", 1]]
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 92], ["created_at", "2021-10-25 23:00:02.876588"], ["updated_at", "2021-10-25 23:00:02.876588"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 92], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 92], ["created_at", "2021-10-25 23:00:02.897637"], ["updated_at", "2021-10-25 23:00:02.897637"]]
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 92], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 92], ["created_at", "2021-10-25 23:00:02.899856"], ["updated_at", "2021-10-25 23:00:02.899856"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 92], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 92], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.6ms)
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:00:02.907447"], ["updated_at", "2021-10-25 23:00:02.907447"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 93], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 93], ["created_at", "2021-10-25 23:00:02.909155"], ["updated_at", "2021-10-25 23:00:02.909155"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 93], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 93], ["created_at", "2021-10-25 23:00:02.910895"], ["updated_at", "2021-10-25 23:00:02.910895"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 93], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 93], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.3ms) Started GET “/pets/243/edit” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"243"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 243], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.0ms)
Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:00:02.924316"], ["updated_at", "2021-10-25 23:00:02.924316"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 94], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 94], ["created_at", "2021-10-25 23:00:02.925719"], ["updated_at", "2021-10-25 23:00:02.925719"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 94], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 94], ["created_at", "2021-10-25 23:00:02.927129"], ["updated_at", "2021-10-25 23:00:02.927129"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 94], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 94], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.6ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.5ms) Started DELETE “/pets/245” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"245"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 245], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (2.2ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 245]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 2.5ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 94], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:00:02.949809"], ["updated_at", "2021-10-25 23:00:02.949809"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 95], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 95], ["created_at", "2021-10-25 23:00:02.951306"], ["updated_at", "2021-10-25 23:00:02.951306"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 95], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 95], ["created_at", "2021-10-25 23:00:02.952535"], ["updated_at", "2021-10-25 23:00:02.952535"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 95], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 95], ["created_at", "2021-10-25 23:00:02.953842"], ["updated_at", "2021-10-25 23:00:02.953842"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 95], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 95], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 95], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.6ms)
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.3ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by PetsController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
[1m[36mPet Load (1.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 95], ["LIMIT", 1]]
[1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 95], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (2.5ms)
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 1.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by ApplicationsController#new as HTML
Rendering applications/new.html.erb within layouts/application Rendered applications/new.html.erb within layouts/application (1.4ms)
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms) Started POST “/applications” for 127.0.0.1 at 2021-10-25 17:00:02 -0600 Processing by ApplicationsController#create as HTML
Parameters: {"utf8"=>"✓", "applicant_name"=>"Jacob Yarborough", "street_address"=>"789 South Street", "city"=>"Denver", "state"=>"CO", "zipcode"=>"80222", "why"=>"I love dogs", "commit"=>"Submit Application"}
No template found for ApplicationsController#create, rendering head :no_content Completed 204 No Content in 963214ms (ActiveRecord: 0.0ms)
[1m[36mApplication Load (0.8ms)[0m [1m[34mSELECT "applications".* FROM "applications" ORDER BY "applications"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
[1m[35m (0.6ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:16:11.672630"], ["updated_at", "2021-10-25 23:16:11.672630"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 96], ["LIMIT", 1]]
[1m[36mPet Create (0.9ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 96], ["created_at", "2021-10-25 23:16:11.702753"], ["updated_at", "2021-10-25 23:16:11.702753"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 96], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 96], ["created_at", "2021-10-25 23:16:11.705180"], ["updated_at", "2021-10-25 23:16:11.705180"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 96], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 96], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (7.5ms)
Completed 200 OK in 93ms (Views: 88.3ms | ActiveRecord: 0.7ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:16:11.855495"], ["updated_at", "2021-10-25 23:16:11.855495"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.6ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 97], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 97], ["created_at", "2021-10-25 23:16:11.877239"], ["updated_at", "2021-10-25 23:16:11.877239"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 97], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 97], ["created_at", "2021-10-25 23:16:11.879395"], ["updated_at", "2021-10-25 23:16:11.879395"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 97], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 97], ["created_at", "2021-10-25 23:16:11.881007"], ["updated_at", "2021-10-25 23:16:11.881007"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 97], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 97], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:16:11.887561"], ["updated_at", "2021-10-25 23:16:11.887561"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 98], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 98], ["created_at", "2021-10-25 23:16:11.889038"], ["updated_at", "2021-10-25 23:16:11.889038"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 98], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 98], ["created_at", "2021-10-25 23:16:11.890466"], ["updated_at", "2021-10-25 23:16:11.890466"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 98], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 98], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.7ms)
Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.4ms) Started GET “/pets/255/edit” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"255"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 255], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.0ms)
Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:16:11.903883"], ["updated_at", "2021-10-25 23:16:11.903883"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 99], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 99], ["created_at", "2021-10-25 23:16:11.905729"], ["updated_at", "2021-10-25 23:16:11.905729"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 99], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 99], ["created_at", "2021-10-25 23:16:11.907139"], ["updated_at", "2021-10-25 23:16:11.907139"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 99], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 99], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.8ms)
Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.5ms) Started DELETE “/pets/257” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"257"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 257], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (1.5ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 257]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 1.9ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 99], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:16:11.929871"], ["updated_at", "2021-10-25 23:16:11.929871"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 100], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 100], ["created_at", "2021-10-25 23:16:11.931421"], ["updated_at", "2021-10-25 23:16:11.931421"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 100], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 100], ["created_at", "2021-10-25 23:16:11.933063"], ["updated_at", "2021-10-25 23:16:11.933063"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 100], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 100], ["created_at", "2021-10-25 23:16:11.934289"], ["updated_at", "2021-10-25 23:16:11.934289"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 100], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 100], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 100], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.5ms)
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.3ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by PetsController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 100], ["LIMIT", 1]]
[1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 100], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (2.3ms)
Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.9ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by ApplicationsController#new as HTML
Rendering applications/new.html.erb within layouts/application Rendered applications/new.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms) Started POST “/applications” for 127.0.0.1 at 2021-10-25 17:16:11 -0600 Processing by ApplicationsController#create as HTML
Parameters: {"utf8"=>"✓", "applicant_name"=>"Jacob Yarborough", "street_address"=>"789 South Street", "city"=>"Denver", "state"=>"CO", "zipcode"=>"80222", "why"=>"I love dogs", "commit"=>"Submit Application"}
Unpermitted parameters: :utf8, :commit Unpermitted parameters: :utf8, :commit
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (1.0ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "789 South Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80222"], ["why", "I love dogs"], ["created_at", "2021-10-25 23:17:00.612007"], ["updated_at", "2021-10-25 23:17:00.612007"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Update (1.6ms)[0m [1m[33mUPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3[0m [["application_status", "In Progress"], ["updated_at", "2021-10-25 23:17:39.938167"], ["id", 13]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Unpermitted parameters: :utf8, :commit Completed 500 Internal Server Error in 98331ms (ActiveRecord: 12.8ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:18:02.180332"], ["updated_at", "2021-10-25 23:18:02.180332"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.6ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 101], ["LIMIT", 1]]
[1m[36mPet Create (0.9ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 101], ["created_at", "2021-10-25 23:18:02.209331"], ["updated_at", "2021-10-25 23:18:02.209331"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 101], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 101], ["created_at", "2021-10-25 23:18:02.211516"], ["updated_at", "2021-10-25 23:18:02.211516"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 101], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 101], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (7.3ms)
Completed 200 OK in 92ms (Views: 87.6ms | ActiveRecord: 0.8ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:18:02.356757"], ["updated_at", "2021-10-25 23:18:02.356757"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 102], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 102], ["created_at", "2021-10-25 23:18:02.359239"], ["updated_at", "2021-10-25 23:18:02.359239"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 102], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 102], ["created_at", "2021-10-25 23:18:02.378190"], ["updated_at", "2021-10-25 23:18:02.378190"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 102], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 102], ["created_at", "2021-10-25 23:18:02.379932"], ["updated_at", "2021-10-25 23:18:02.379932"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 102], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 102], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.5ms)
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:18:02.386295"], ["updated_at", "2021-10-25 23:18:02.386295"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 103], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 103], ["created_at", "2021-10-25 23:18:02.387935"], ["updated_at", "2021-10-25 23:18:02.387935"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 103], ["LIMIT", 1]]
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 103], ["created_at", "2021-10-25 23:18:02.389352"], ["updated_at", "2021-10-25 23:18:02.389352"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 103], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 103], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.7ms)
Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.4ms) Started GET “/pets/267/edit” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"267"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 267], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.0ms)
Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:18:02.403848"], ["updated_at", "2021-10-25 23:18:02.403848"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 104], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 104], ["created_at", "2021-10-25 23:18:02.405401"], ["updated_at", "2021-10-25 23:18:02.405401"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 104], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 104], ["created_at", "2021-10-25 23:18:02.407330"], ["updated_at", "2021-10-25 23:18:02.407330"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 104], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 104], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms) Started DELETE “/pets/269” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"269"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 269], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (1.7ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 269]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 2.1ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 104], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:18:02.430437"], ["updated_at", "2021-10-25 23:18:02.430437"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 105], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 105], ["created_at", "2021-10-25 23:18:02.432219"], ["updated_at", "2021-10-25 23:18:02.432219"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 105], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 105], ["created_at", "2021-10-25 23:18:02.433514"], ["updated_at", "2021-10-25 23:18:02.433514"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 105], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 105], ["created_at", "2021-10-25 23:18:02.435051"], ["updated_at", "2021-10-25 23:18:02.435051"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 105], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 105], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 105], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.5ms)
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.3ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by PetsController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 105], ["LIMIT", 1]]
[1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 105], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.8ms)
Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.7ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by ApplicationsController#new as HTML
Rendering applications/new.html.erb within layouts/application Rendered applications/new.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms) Started POST “/applications” for 127.0.0.1 at 2021-10-25 17:18:02 -0600 Processing by ApplicationsController#create as HTML
Parameters: {"utf8"=>"✓", "applicant_name"=>"Jacob Yarborough", "street_address"=>"789 South Street", "city"=>"Denver", "state"=>"CO", "zipcode"=>"80222", "why"=>"I love dogs", "commit"=>"Submit Application"}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.8ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "789 South Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80222"], ["why", "I love dogs"], ["created_at", "2021-10-25 23:18:02.480162"], ["updated_at", "2021-10-25 23:18:02.480162"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Update (0.7ms)[0m [1m[33mUPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3[0m [["application_status", "In Progress"], ["updated_at", "2021-10-25 23:18:02.481896"], ["id", 14]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/application/14 Completed 302 Found in 21ms (ActiveRecord: 12.1ms) Started GET “/application/14” for 127.0.0.1 at 2021-10-25 17:18:02 -0600
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:18:41.798630"], ["updated_at", "2021-10-25 23:18:41.798630"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.6ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 106], ["LIMIT", 1]]
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 106], ["created_at", "2021-10-25 23:18:41.830826"], ["updated_at", "2021-10-25 23:18:41.830826"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 106], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 106], ["created_at", "2021-10-25 23:18:41.833007"], ["updated_at", "2021-10-25 23:18:41.833007"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:41 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 106], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 106], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (7.5ms)
Completed 200 OK in 89ms (Views: 84.2ms | ActiveRecord: 0.9ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:18:41.975420"], ["updated_at", "2021-10-25 23:18:41.975420"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 107], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 107], ["created_at", "2021-10-25 23:18:41.995147"], ["updated_at", "2021-10-25 23:18:41.995147"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 107], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 107], ["created_at", "2021-10-25 23:18:41.997348"], ["updated_at", "2021-10-25 23:18:41.997348"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 107], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 107], ["created_at", "2021-10-25 23:18:41.999069"], ["updated_at", "2021-10-25 23:18:41.999069"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:42 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 107], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 107], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:18:42.006032"], ["updated_at", "2021-10-25 23:18:42.006032"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 108], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 108], ["created_at", "2021-10-25 23:18:42.007988"], ["updated_at", "2021-10-25 23:18:42.007988"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 108], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 108], ["created_at", "2021-10-25 23:18:42.009409"], ["updated_at", "2021-10-25 23:18:42.009409"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:42 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 108], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 108], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.6ms)
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.5ms) Started GET “/pets/279/edit” for 127.0.0.1 at 2021-10-25 17:18:42 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"279"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 279], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.1ms)
Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:18:42.022039"], ["updated_at", "2021-10-25 23:18:42.022039"]]
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 109], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 109], ["created_at", "2021-10-25 23:18:42.024363"], ["updated_at", "2021-10-25 23:18:42.024363"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 109], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 109], ["created_at", "2021-10-25 23:18:42.025716"], ["updated_at", "2021-10-25 23:18:42.025716"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:42 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 109], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 109], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.4ms) Started DELETE “/pets/281” for 127.0.0.1 at 2021-10-25 17:18:42 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"281"}
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 281], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (1.4ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 281]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 1.9ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:42 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 109], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.5ms)
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.7ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:42 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:18:42.048298"], ["updated_at", "2021-10-25 23:18:42.048298"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 110], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 110], ["created_at", "2021-10-25 23:18:42.049704"], ["updated_at", "2021-10-25 23:18:42.049704"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 110], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 110], ["created_at", "2021-10-25 23:18:42.051250"], ["updated_at", "2021-10-25 23:18:42.051250"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 110], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 110], ["created_at", "2021-10-25 23:18:42.052965"], ["updated_at", "2021-10-25 23:18:42.052965"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:42 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 110], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 110], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 110], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (2.1ms)
Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.8ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 17:18:42 -0600 Processing by PetsController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 110], ["LIMIT", 1]]
[1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 110], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.8ms)
Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.9ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:18:42 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 17:18:42 -0600 Processing by ApplicationsController#new as HTML
Rendering applications/new.html.erb within layouts/application Rendered applications/new.html.erb within layouts/application (1.4ms)
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms) Started POST “/applications” for 127.0.0.1 at 2021-10-25 17:18:42 -0600 Processing by ApplicationsController#create as HTML
Parameters: {"utf8"=>"✓", "applicant_name"=>"Jacob Yarborough", "street_address"=>"789 South Street", "city"=>"Denver", "state"=>"CO", "zipcode"=>"80222", "why"=>"I love dogs", "commit"=>"Submit Application"}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.9ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "789 South Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80222"], ["why", "I love dogs"], ["created_at", "2021-10-25 23:18:42.098374"], ["updated_at", "2021-10-25 23:18:42.098374"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Update (0.5ms)[0m [1m[33mUPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3[0m [["application_status", "In Progress"], ["updated_at", "2021-10-25 23:18:42.100183"], ["id", 15]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/application/15 Completed 302 Found in 20ms (ActiveRecord: 11.6ms) Started GET “/application/15” for 127.0.0.1 at 2021-10-25 17:18:42 -0600
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.9ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:21:39.629534"], ["updated_at", "2021-10-25 23:21:39.629534"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 111], ["LIMIT", 1]]
[1m[36mPet Create (1.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 111], ["created_at", "2021-10-25 23:21:39.665126"], ["updated_at", "2021-10-25 23:21:39.665126"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 111], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 111], ["created_at", "2021-10-25 23:21:39.668461"], ["updated_at", "2021-10-25 23:21:39.668461"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 111], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 111], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (7.3ms)
Completed 200 OK in 91ms (Views: 86.2ms | ActiveRecord: 0.8ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:21:39.844371"], ["updated_at", "2021-10-25 23:21:39.844371"]]
[1m[35m (0.8ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 112], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 112], ["created_at", "2021-10-25 23:21:39.847406"], ["updated_at", "2021-10-25 23:21:39.847406"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 112], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 112], ["created_at", "2021-10-25 23:21:39.848982"], ["updated_at", "2021-10-25 23:21:39.848982"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 112], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 112], ["created_at", "2021-10-25 23:21:39.850419"], ["updated_at", "2021-10-25 23:21:39.850419"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 112], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 112], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (2.3ms)
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.9ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:21:39.859531"], ["updated_at", "2021-10-25 23:21:39.859531"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 113], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 113], ["created_at", "2021-10-25 23:21:39.861290"], ["updated_at", "2021-10-25 23:21:39.861290"]]
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 113], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 113], ["created_at", "2021-10-25 23:21:39.863176"], ["updated_at", "2021-10-25 23:21:39.863176"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 113], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 113], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms) Started GET “/pets/291/edit” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"291"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 291], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.3ms)
Completed 200 OK in 5ms (Views: 3.0ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:21:39.877179"], ["updated_at", "2021-10-25 23:21:39.877179"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 114], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 114], ["created_at", "2021-10-25 23:21:39.878981"], ["updated_at", "2021-10-25 23:21:39.878981"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 114], ["LIMIT", 1]]
[1m[36mPet Create (0.9ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 114], ["created_at", "2021-10-25 23:21:39.880377"], ["updated_at", "2021-10-25 23:21:39.880377"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 114], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 114], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.3ms) Started DELETE “/pets/293” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"293"}
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 293], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (2.0ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 293]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 4ms (ActiveRecord: 2.7ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 114], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:21:39.904781"], ["updated_at", "2021-10-25 23:21:39.904781"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 115], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 115], ["created_at", "2021-10-25 23:21:39.906785"], ["updated_at", "2021-10-25 23:21:39.906785"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 115], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 115], ["created_at", "2021-10-25 23:21:39.908272"], ["updated_at", "2021-10-25 23:21:39.908272"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 115], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 115], ["created_at", "2021-10-25 23:21:39.909609"], ["updated_at", "2021-10-25 23:21:39.909609"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 115], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 115], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 115], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.6ms)
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.3ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by PetsController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 115], ["LIMIT", 1]]
[1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 115], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.7ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.7ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by ApplicationsController#new as HTML
Rendering applications/new.html.erb within layouts/application Rendered applications/new.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms) Started POST “/applications” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by ApplicationsController#create as HTML
Parameters: {"utf8"=>"✓", "applicant_name"=>"Jacob Yarborough", "street_address"=>"789 South Street", "city"=>"Denver", "state"=>"CO", "zipcode"=>"80222", "why"=>"I love dogs", "commit"=>"Submit Application"}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.9ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "789 South Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80222"], ["why", "I love dogs"], ["created_at", "2021-10-25 23:21:39.953008"], ["updated_at", "2021-10-25 23:21:39.953008"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Update (0.8ms)[0m [1m[33mUPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3[0m [["application_status", "In Progress"], ["updated_at", "2021-10-25 23:21:39.954817"], ["id", 16]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/16 Completed 302 Found in 19ms (ActiveRecord: 10.5ms) Started GET “/applications/16” for 127.0.0.1 at 2021-10-25 17:21:39 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"16"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 16], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 16)[0m
Rendered applications/show.html.erb within layouts/application (6.2ms)
Completed 200 OK in 8ms (Views: 5.2ms | ActiveRecord: 1.8ms)
[1m[35m (1.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:21:51.608876"], ["updated_at", "2021-10-25 23:21:51.608876"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 116], ["LIMIT", 1]]
[1m[36mPet Create (1.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 116], ["created_at", "2021-10-25 23:21:51.647849"], ["updated_at", "2021-10-25 23:21:51.647849"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 116], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 116], ["created_at", "2021-10-25 23:21:51.651098"], ["updated_at", "2021-10-25 23:21:51.651098"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 116], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 116], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (6.7ms)
Completed 200 OK in 88ms (Views: 83.3ms | ActiveRecord: 0.6ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:21:51.799977"], ["updated_at", "2021-10-25 23:21:51.799977"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 117], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 117], ["created_at", "2021-10-25 23:21:51.801659"], ["updated_at", "2021-10-25 23:21:51.801659"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 117], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 117], ["created_at", "2021-10-25 23:21:51.803551"], ["updated_at", "2021-10-25 23:21:51.803551"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 117], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 117], ["created_at", "2021-10-25 23:21:51.805063"], ["updated_at", "2021-10-25 23:21:51.805063"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 117], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 117], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:21:51.811090"], ["updated_at", "2021-10-25 23:21:51.811090"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 118], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 118], ["created_at", "2021-10-25 23:21:51.812558"], ["updated_at", "2021-10-25 23:21:51.812558"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 118], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 118], ["created_at", "2021-10-25 23:21:51.813797"], ["updated_at", "2021-10-25 23:21:51.813797"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 118], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 118], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms) Started GET “/pets/303/edit” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"303"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 303], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (2.0ms)
Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:21:51.825447"], ["updated_at", "2021-10-25 23:21:51.825447"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 119], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 119], ["created_at", "2021-10-25 23:21:51.827131"], ["updated_at", "2021-10-25 23:21:51.827131"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 119], ["LIMIT", 1]]
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 119], ["created_at", "2021-10-25 23:21:51.828548"], ["updated_at", "2021-10-25 23:21:51.828548"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 119], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 119], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms) Started DELETE “/pets/305” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"305"}
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 305], ["LIMIT", 1]]
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (2.5ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 305]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 4ms (ActiveRecord: 3.4ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 119], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:21:51.851138"], ["updated_at", "2021-10-25 23:21:51.851138"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 120], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 120], ["created_at", "2021-10-25 23:21:51.852663"], ["updated_at", "2021-10-25 23:21:51.852663"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 120], ["LIMIT", 1]]
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 120], ["created_at", "2021-10-25 23:21:51.854313"], ["updated_at", "2021-10-25 23:21:51.854313"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 120], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 120], ["created_at", "2021-10-25 23:21:51.856182"], ["updated_at", "2021-10-25 23:21:51.856182"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 120], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 120], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 120], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.5ms)
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.3ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by PetsController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 120], ["LIMIT", 1]]
[1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 120], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.5ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.6ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by ApplicationsController#new as HTML
Rendering applications/new.html.erb within layouts/application Rendered applications/new.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms) Started POST “/applications” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by ApplicationsController#create as HTML
Parameters: {"utf8"=>"✓", "applicant_name"=>"Jacob Yarborough", "street_address"=>"789 South Street", "city"=>"Denver", "state"=>"CO", "zipcode"=>"80222", "why"=>"I love dogs", "commit"=>"Submit Application"}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (1.0ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "789 South Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80222"], ["why", "I love dogs"], ["created_at", "2021-10-25 23:21:51.900959"], ["updated_at", "2021-10-25 23:21:51.900959"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Update (0.7ms)[0m [1m[33mUPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3[0m [["application_status", "In Progress"], ["updated_at", "2021-10-25 23:21:51.902865"], ["id", 17]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/17 Completed 302 Found in 22ms (ActiveRecord: 12.0ms) Started GET “/applications/17” for 127.0.0.1 at 2021-10-25 17:21:51 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"17"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 17], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 17)[0m
Rendered applications/show.html.erb within layouts/application (6.1ms)
Completed 200 OK in 8ms (Views: 5.1ms | ActiveRecord: 1.9ms)
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" ORDER BY "applications"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.0ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.9ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:22:15.638988"], ["updated_at", "2021-10-25 23:22:15.638988"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 121], ["LIMIT", 1]]
[1m[36mPet Create (1.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 121], ["created_at", "2021-10-25 23:22:15.670691"], ["updated_at", "2021-10-25 23:22:15.670691"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 121], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 121], ["created_at", "2021-10-25 23:22:15.673217"], ["updated_at", "2021-10-25 23:22:15.673217"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 121], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 121], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (6.5ms)
Completed 200 OK in 89ms (Views: 84.9ms | ActiveRecord: 0.6ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:22:15.814262"], ["updated_at", "2021-10-25 23:22:15.814262"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 122], ["LIMIT", 1]]
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 122], ["created_at", "2021-10-25 23:22:15.832909"], ["updated_at", "2021-10-25 23:22:15.832909"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 122], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 122], ["created_at", "2021-10-25 23:22:15.834875"], ["updated_at", "2021-10-25 23:22:15.834875"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 122], ["LIMIT", 1]]
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 122], ["created_at", "2021-10-25 23:22:15.836322"], ["updated_at", "2021-10-25 23:22:15.836322"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 122], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 122], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.5ms)
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:22:15.844050"], ["updated_at", "2021-10-25 23:22:15.844050"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 123], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 123], ["created_at", "2021-10-25 23:22:15.845652"], ["updated_at", "2021-10-25 23:22:15.845652"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 123], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 123], ["created_at", "2021-10-25 23:22:15.847302"], ["updated_at", "2021-10-25 23:22:15.847302"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 123], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 123], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.7ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.7ms) Started GET “/pets/315/edit” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"315"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 315], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (1.8ms)
Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:22:15.860220"], ["updated_at", "2021-10-25 23:22:15.860220"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 124], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 124], ["created_at", "2021-10-25 23:22:15.861866"], ["updated_at", "2021-10-25 23:22:15.861866"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 124], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 124], ["created_at", "2021-10-25 23:22:15.863337"], ["updated_at", "2021-10-25 23:22:15.863337"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 124], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 124], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms) Started DELETE “/pets/317” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"317"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 317], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (1.6ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 317]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 2.0ms) Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 124], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-25 23:22:15.884006"], ["updated_at", "2021-10-25 23:22:15.884006"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 125], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 125], ["created_at", "2021-10-25 23:22:15.885763"], ["updated_at", "2021-10-25 23:22:15.885763"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 125], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 125], ["created_at", "2021-10-25 23:22:15.887040"], ["updated_at", "2021-10-25 23:22:15.887040"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 125], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 125], ["created_at", "2021-10-25 23:22:15.888285"], ["updated_at", "2021-10-25 23:22:15.888285"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 125], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 125], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 125], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by PetsController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 125], ["LIMIT", 1]]
[1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 125], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (1.9ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.9ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by ApplicationsController#new as HTML
Rendering applications/new.html.erb within layouts/application Rendered applications/new.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms) Started POST “/applications” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by ApplicationsController#create as HTML
Parameters: {"utf8"=>"✓", "applicant_name"=>"Jacob Yarborough", "street_address"=>"789 South Street", "city"=>"Denver", "state"=>"CO", "zipcode"=>"80222", "why"=>"I love dogs", "commit"=>"Submit Application"}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (1.1ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "789 South Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80222"], ["why", "I love dogs"], ["created_at", "2021-10-25 23:22:15.937546"], ["updated_at", "2021-10-25 23:22:15.937546"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Update (0.7ms)[0m [1m[33mUPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3[0m [["application_status", "In Progress"], ["updated_at", "2021-10-25 23:22:15.939707"], ["id", 18]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/18 Completed 302 Found in 24ms (ActiveRecord: 14.5ms) Started GET “/applications/18” for 127.0.0.1 at 2021-10-25 17:22:15 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"18"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 18], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 18)[0m
Rendered applications/show.html.erb within layouts/application (6.1ms)
Completed 200 OK in 9ms (Views: 5.5ms | ActiveRecord: 1.6ms)
[1m[36mApplication Load (0.5ms)[0m [1m[34mSELECT "applications".* FROM "applications" ORDER BY "applications"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (22.8ms)[0m [1m[35mDROP DATABASE IF EXISTS "adopt_dont_shop_test"[0m
[1m[35m (192.0ms)[0m [1m[35mCREATE DATABASE "adopt_dont_shop_test" ENCODING = 'unicode'[0m
[1m[35mSQL (1.1ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
[1m[35m (1.7ms)[0m [1m[35mDROP TABLE IF EXISTS "application_pets" CASCADE[0m
[1m[35m (7.0ms)[0m [1m[35mCREATE TABLE "application_pets" ("id" bigserial primary key, "pet_id" bigint, "application_id" bigint, "status" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_application_pets_on_application_id" ON "application_pets" ("application_id")[0m
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_application_pets_on_pet_id" ON "application_pets" ("pet_id")[0m
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "applications" CASCADE[0m
[1m[35m (3.4ms)[0m [1m[35mCREATE TABLE "applications" ("id" bigserial primary key, "applicant_name" character varying, "street_address" character varying, "city" character varying, "state" character varying, "zipcode" character varying, "application_status" character varying, "why" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "pets" CASCADE[0m
[1m[35m (4.0ms)[0m [1m[35mCREATE TABLE "pets" ("id" bigserial primary key, "adoptable" boolean, "age" integer, "breed" character varying, "name" character varying, "shelter_id" bigint NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (1.3ms)[0m [1m[35mCREATE INDEX "index_pets_on_shelter_id" ON "pets" ("shelter_id")[0m
[1m[35m (0.9ms)[0m [1m[35mDROP TABLE IF EXISTS "shelters" CASCADE[0m
[1m[35m (3.6ms)[0m [1m[35mCREATE TABLE "shelters" ("id" bigserial primary key, "foster_program" boolean, "name" character varying, "city" character varying, "rank" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (1.4ms)[0m [1m[35mDROP TABLE IF EXISTS "veterinarians" CASCADE[0m
[1m[35m (3.8ms)[0m [1m[35mCREATE TABLE "veterinarians" ("id" bigserial primary key, "on_call" boolean, "review_rating" integer, "name" character varying, "veterinary_office_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_veterinarians_on_veterinary_office_id" ON "veterinarians" ("veterinary_office_id")[0m
[1m[35m (0.3ms)[0m [1m[35mDROP TABLE IF EXISTS "veterinary_offices" CASCADE[0m
[1m[35m (3.4ms)[0m [1m[35mCREATE TABLE "veterinary_offices" ("id" bigserial primary key, "boarding_services" boolean, "max_patient_capacity" integer, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (3.7ms)[0m [1m[35mALTER TABLE "application_pets" ADD CONSTRAINT "fk_rails_6ac8983e3b"
FOREIGN KEY (“application_id”)
REFERENCES "applications" ("id")
[0m
[1m[35m (1.9ms)[0m [1m[35mALTER TABLE "application_pets" ADD CONSTRAINT "fk_rails_412710cd26"
FOREIGN KEY (“pet_id”)
REFERENCES "pets" ("id")
[0m
[1m[35m (1.9ms)[0m [1m[35mALTER TABLE "pets" ADD CONSTRAINT "fk_rails_92fb5d7a05"
FOREIGN KEY (“shelter_id”)
REFERENCES "shelters" ("id")
[0m
[1m[35m (1.7ms)[0m [1m[35mALTER TABLE "veterinarians" ADD CONSTRAINT "fk_rails_d296209ae6"
FOREIGN KEY (“veterinary_office_id”)
REFERENCES "veterinary_offices" ("id")
[0m
[1m[35m (3.7ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.4ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (20211024000652)[0m
[1m[35m (0.3ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES
(20210212235502), (20210213001632), (20210212235735), (20211023230147), (20210213001717);
[0m
[1m[35m (4.3ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[36mActiveRecord::InternalMetadata Load (0.6ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[36mActiveRecord::InternalMetadata Create (0.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "test"], ["created_at", "2021-10-26 01:12:45.887857"], ["updated_at", "2021-10-26 01:12:45.887857"]]
[1m[35m (0.2ms)[0m [1m[35mCOMMIT[0m
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
[1m[35m (0.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 01:12:45.985922"], ["updated_at", "2021-10-26 01:12:45.985922"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 1], ["created_at", "2021-10-26 01:12:46.029049"], ["updated_at", "2021-10-26 01:12:46.029049"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 1], ["created_at", "2021-10-26 01:12:46.031811"], ["updated_at", "2021-10-26 01:12:46.031811"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 1], ["created_at", "2021-10-26 01:12:46.033244"], ["updated_at", "2021-10-26 01:12:46.033244"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.8ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 01:12:46.049621"], ["updated_at", "2021-10-26 01:12:46.049621"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (2.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 1], ["application_id", 1], ["created_at", "2021-10-26 01:12:46.067966"], ["updated_at", "2021-10-26 01:12:46.067966"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 2], ["application_id", 1], ["created_at", "2021-10-26 01:12:46.071583"], ["updated_at", "2021-10-26 01:12:46.071583"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/1” for 127.0.0.1 at 2021-10-25 19:12:46 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"1"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 1], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (2.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 1)[0m
Rendered applications/show.html.erb within layouts/application (18.4ms)
Completed 200 OK in 10948ms (Views: 189.7ms | ActiveRecord: 2.9ms) Started GET “/pets/1” for 127.0.0.1 at 2021-10-25 19:12:57 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"1"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 1], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 1], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 0.6ms) Started GET “/applications/1” for 127.0.0.1 at 2021-10-25 19:12:57 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"1"}
[1m[36mApplication Load (0.6ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 1], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 1)[0m
Rendered applications/show.html.erb within layouts/application (2.9ms)
Completed 200 OK in 16170ms (Views: 3.8ms | ActiveRecord: 1.4ms) Started GET “/pets/2” for 127.0.0.1 at 2021-10-25 19:13:13 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"2"}
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 1], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 4ms (Views: 2.1ms | ActiveRecord: 0.8ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 01:13:13.294312"], ["updated_at", "2021-10-26 01:13:13.294312"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 2], ["created_at", "2021-10-26 01:13:13.296079"], ["updated_at", "2021-10-26 01:13:13.296079"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 2], ["created_at", "2021-10-26 01:13:13.297389"], ["updated_at", "2021-10-26 01:13:13.297389"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 2], ["created_at", "2021-10-26 01:13:13.298694"], ["updated_at", "2021-10-26 01:13:13.298694"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 01:13:13.299720"], ["updated_at", "2021-10-26 01:13:13.299720"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/2” for 127.0.0.1 at 2021-10-25 19:13:13 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"2"}
[1m[36mApplication Load (0.5ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 2)[0m
Rendered applications/show.html.erb within layouts/application (2.7ms)
Completed 200 OK in 4034ms (Views: 3.1ms | ActiveRecord: 1.5ms) Started GET “/applications/2?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-25 19:13:17 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"2"}
Completed 500 Internal Server Error in 739583ms (ActiveRecord: 0.0ms)
[1m[35m (2.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 01:32:32.032611"], ["updated_at", "2021-10-26 01:32:32.032611"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.0ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 3], ["created_at", "2021-10-26 01:32:32.065917"], ["updated_at", "2021-10-26 01:32:32.065917"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 3], ["created_at", "2021-10-26 01:32:32.067984"], ["updated_at", "2021-10-26 01:32:32.067984"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 3], ["created_at", "2021-10-26 01:32:32.069347"], ["updated_at", "2021-10-26 01:32:32.069347"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 01:32:32.086031"], ["updated_at", "2021-10-26 01:32:32.086031"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 7], ["application_id", 3], ["created_at", "2021-10-26 01:32:32.103803"], ["updated_at", "2021-10-26 01:32:32.103803"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 8], ["application_id", 3], ["created_at", "2021-10-26 01:32:32.106428"], ["updated_at", "2021-10-26 01:32:32.106428"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/3” for 127.0.0.1 at 2021-10-25 19:32:32 -0600
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 01:32:32.154385"], ["updated_at", "2021-10-26 01:32:32.154385"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 4], ["created_at", "2021-10-26 01:32:32.155861"], ["updated_at", "2021-10-26 01:32:32.155861"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 4], ["created_at", "2021-10-26 01:32:32.157448"], ["updated_at", "2021-10-26 01:32:32.157448"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 4], ["created_at", "2021-10-26 01:32:32.158561"], ["updated_at", "2021-10-26 01:32:32.158561"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 01:32:32.159570"], ["updated_at", "2021-10-26 01:32:32.159570"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/4” for 127.0.0.1 at 2021-10-25 19:32:32 -0600
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.0ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 01:38:19.657821"], ["updated_at", "2021-10-26 01:38:19.657821"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.9ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 5], ["created_at", "2021-10-26 01:38:19.699053"], ["updated_at", "2021-10-26 01:38:19.699053"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 5], ["created_at", "2021-10-26 01:38:19.702115"], ["updated_at", "2021-10-26 01:38:19.702115"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 5], ["created_at", "2021-10-26 01:38:19.703541"], ["updated_at", "2021-10-26 01:38:19.703541"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 01:38:19.732995"], ["updated_at", "2021-10-26 01:38:19.732995"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 13], ["application_id", 5], ["created_at", "2021-10-26 01:38:19.754091"], ["updated_at", "2021-10-26 01:38:19.754091"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 14], ["application_id", 5], ["created_at", "2021-10-26 01:38:19.756793"], ["updated_at", "2021-10-26 01:38:19.756793"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/5” for 127.0.0.1 at 2021-10-25 19:38:19 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"5"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 5)[0m
Rendered applications/show.html.erb within layouts/application (8.0ms)
Completed 200 OK in 98ms (Views: 91.3ms | ActiveRecord: 1.6ms) Started GET “/pets/13” for 127.0.0.1 at 2021-10-25 19:38:19 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"13"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 4ms (Views: 2.0ms | ActiveRecord: 0.6ms) Started GET “/applications/5” for 127.0.0.1 at 2021-10-25 19:38:19 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"5"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 5)[0m
Rendered applications/show.html.erb within layouts/application (1.6ms)
Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.2ms) Started GET “/pets/14” for 127.0.0.1 at 2021-10-25 19:38:19 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"14"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 14], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.6ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 01:38:19.927203"], ["updated_at", "2021-10-26 01:38:19.927203"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 6], ["created_at", "2021-10-26 01:38:19.928694"], ["updated_at", "2021-10-26 01:38:19.928694"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 6], ["created_at", "2021-10-26 01:38:19.930155"], ["updated_at", "2021-10-26 01:38:19.930155"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 6], ["created_at", "2021-10-26 01:38:19.931182"], ["updated_at", "2021-10-26 01:38:19.931182"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 01:38:19.932283"], ["updated_at", "2021-10-26 01:38:19.932283"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/6” for 127.0.0.1 at 2021-10-25 19:38:19 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"6"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 6)[0m
Rendered applications/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.7ms) Started GET “/applications/6?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-25 19:38:19 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"6"}
[1m[36mApplication Load (0.5ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]]
[1m[36mApplication Load (0.7ms)[0m [1m[34mSELECT "applications".* FROM "applications"[0m
[1m[36mApplication Load (0.6ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]]
[1m[36mPet Load (6.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like %'b'%)[0m
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like %'b'%) LIMIT $1[0m [["LIMIT", 11]]
[1m[36mPet Load (1.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like %'b'%)[0m
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like %'b'%) LIMIT $1[0m [["LIMIT", 11]]
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like %'b'%)[0m
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like %'b'%) LIMIT $1[0m [["LIMIT", 11]]
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like %'b'%)[0m
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like %'b'%) LIMIT $1[0m [["LIMIT", 11]]
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like %'b'%)[0m
[1m[35m (1.0ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE (lower(pets.name) like %'b'%)[0m
[1m[36mPet Load (3.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%'b'%')[0m
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%'b'%') LIMIT $1[0m [["LIMIT", 11]]
[1m[36mPet Load (1.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%'b'%')[0m
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%'b'%') LIMIT $1[0m [["LIMIT", 11]]
[1m[35m (1.2ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE (lower(pets.name) like '%'b'%')[0m
[1m[36mPet Load (2.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1[0m [["LIMIT", 11]]
[1m[35m (1.0ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Completed 500 Internal Server Error in 784565ms (ActiveRecord: 28.1ms)
[1m[35m (1.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:11:13.915427"], ["updated_at", "2021-10-26 02:11:13.915427"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 7], ["created_at", "2021-10-26 02:11:13.948850"], ["updated_at", "2021-10-26 02:11:13.948850"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 7], ["created_at", "2021-10-26 02:11:13.951580"], ["updated_at", "2021-10-26 02:11:13.951580"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 7], ["created_at", "2021-10-26 02:11:13.952698"], ["updated_at", "2021-10-26 02:11:13.952698"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:11:13.970496"], ["updated_at", "2021-10-26 02:11:13.970496"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.3ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 19], ["application_id", 7], ["created_at", "2021-10-26 02:11:13.987826"], ["updated_at", "2021-10-26 02:11:13.987826"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 20], ["application_id", 7], ["created_at", "2021-10-26 02:11:13.990243"], ["updated_at", "2021-10-26 02:11:13.990243"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/7” for 127.0.0.1 at 2021-10-25 20:11:13 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"7"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]]
Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.3ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:11:14.052473"], ["updated_at", "2021-10-26 02:11:14.052473"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 8], ["created_at", "2021-10-26 02:11:14.054437"], ["updated_at", "2021-10-26 02:11:14.054437"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 8], ["created_at", "2021-10-26 02:11:14.055665"], ["updated_at", "2021-10-26 02:11:14.055665"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 8], ["created_at", "2021-10-26 02:11:14.056739"], ["updated_at", "2021-10-26 02:11:14.056739"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:11:14.057648"], ["updated_at", "2021-10-26 02:11:14.057648"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/8” for 127.0.0.1 at 2021-10-25 20:11:14 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"8"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]]
Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.0ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:12:24.768140"], ["updated_at", "2021-10-26 02:12:24.768140"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 9], ["created_at", "2021-10-26 02:12:24.810542"], ["updated_at", "2021-10-26 02:12:24.810542"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 9], ["created_at", "2021-10-26 02:12:24.814354"], ["updated_at", "2021-10-26 02:12:24.814354"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 9], ["created_at", "2021-10-26 02:12:24.816251"], ["updated_at", "2021-10-26 02:12:24.816251"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:12:24.842470"], ["updated_at", "2021-10-26 02:12:24.842470"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 25], ["application_id", 9], ["created_at", "2021-10-26 02:12:24.866865"], ["updated_at", "2021-10-26 02:12:24.866865"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 26], ["application_id", 9], ["created_at", "2021-10-26 02:12:24.869688"], ["updated_at", "2021-10-26 02:12:24.869688"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/9” for 127.0.0.1 at 2021-10-25 20:12:24 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"9"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
[1m[36mCACHE Application Load (0.0ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (2.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 9)[0m
Rendered applications/show.html.erb within layouts/application (9.9ms)
Completed 200 OK in 101ms (Views: 91.7ms | ActiveRecord: 2.9ms) Started GET “/pets/25” for 127.0.0.1 at 2021-10-25 20:12:24 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"25"}
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 25], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 4ms (Views: 2.0ms | ActiveRecord: 0.6ms) Started GET “/applications/9” for 127.0.0.1 at 2021-10-25 20:12:24 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"9"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
[1m[36mCACHE Application Load (0.0ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 9)[0m
Rendered applications/show.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.9ms) Started GET “/pets/26” for 127.0.0.1 at 2021-10-25 20:12:25 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"26"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 26], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.4ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:12:25.043540"], ["updated_at", "2021-10-26 02:12:25.043540"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 10], ["created_at", "2021-10-26 02:12:25.045030"], ["updated_at", "2021-10-26 02:12:25.045030"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 10], ["created_at", "2021-10-26 02:12:25.046517"], ["updated_at", "2021-10-26 02:12:25.046517"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 10], ["created_at", "2021-10-26 02:12:25.047505"], ["updated_at", "2021-10-26 02:12:25.047505"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:12:25.048416"], ["updated_at", "2021-10-26 02:12:25.048416"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/10” for 127.0.0.1 at 2021-10-25 20:12:25 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"10"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 10], ["LIMIT", 1]]
[1m[36mCACHE Application Load (0.0ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 10], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 10)[0m
Rendered applications/show.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.7ms) Started GET “/applications/10?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-25 20:12:25 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"10"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 10], ["LIMIT", 1]]
[1m[36mCACHE Application Load (0.0ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 10], ["LIMIT", 1]]
[1m[36mPet Load (2.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (pets.name like '%b%')[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (pets.name like '%b%')[0m
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (pets.name like 'b')[0m
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets"[0m
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (pets.name like 'Bella')[0m
[1m[36mPet Load (2.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like 'b')[0m
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like 'bella')[0m
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Completed 500 Internal Server Error in 330094ms (ActiveRecord: 7.9ms)
[1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:18:38.025785"], ["updated_at", "2021-10-26 02:18:38.025785"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 11], ["created_at", "2021-10-26 02:18:38.055680"], ["updated_at", "2021-10-26 02:18:38.055680"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 11], ["created_at", "2021-10-26 02:18:38.057922"], ["updated_at", "2021-10-26 02:18:38.057922"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 11], ["created_at", "2021-10-26 02:18:38.059266"], ["updated_at", "2021-10-26 02:18:38.059266"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:18:38.073196"], ["updated_at", "2021-10-26 02:18:38.073196"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 31], ["application_id", 11], ["created_at", "2021-10-26 02:18:38.085171"], ["updated_at", "2021-10-26 02:18:38.085171"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.3ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 32], ["application_id", 11], ["created_at", "2021-10-26 02:18:38.087020"], ["updated_at", "2021-10-26 02:18:38.087020"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/11” for 127.0.0.1 at 2021-10-25 20:18:38 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"11"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
[1m[36mCACHE Application Load (0.0ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 11)[0m
Rendered applications/show.html.erb within layouts/application (8.1ms)
Completed 200 OK in 93ms (Views: 85.3ms | ActiveRecord: 2.1ms) Started GET “/pets/31” for 127.0.0.1 at 2021-10-25 20:18:38 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"31"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 31], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.6ms) Started GET “/applications/11” for 127.0.0.1 at 2021-10-25 20:18:38 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"11"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
[1m[36mCACHE Application Load (0.0ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 11)[0m
Rendered applications/show.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.8ms) Started GET “/pets/32” for 127.0.0.1 at 2021-10-25 20:18:38 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"32"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 32], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.3ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:18:38.266675"], ["updated_at", "2021-10-26 02:18:38.266675"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 12], ["created_at", "2021-10-26 02:18:38.268302"], ["updated_at", "2021-10-26 02:18:38.268302"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 12], ["created_at", "2021-10-26 02:18:38.269602"], ["updated_at", "2021-10-26 02:18:38.269602"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 12], ["created_at", "2021-10-26 02:18:38.270819"], ["updated_at", "2021-10-26 02:18:38.270819"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:18:38.272155"], ["updated_at", "2021-10-26 02:18:38.272155"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/12” for 127.0.0.1 at 2021-10-25 20:18:38 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"12"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]]
[1m[36mCACHE Application Load (0.0ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 12)[0m
Rendered applications/show.html.erb within layouts/application (1.5ms)
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.1ms) Started GET “/applications/12?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-25 20:18:38 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"12"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]]
[1m[36mCACHE Application Load (0.0ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1[0m [["LIMIT", 11]]
Rendered applications/show.html.erb within layouts/application (4.9ms)
Completed 500 Internal Server Error in 6ms (ActiveRecord: 1.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1[0m [["LIMIT", 11]]
[1m[35m (1.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.9ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:24:19.051762"], ["updated_at", "2021-10-26 02:24:19.051762"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 13], ["created_at", "2021-10-26 02:24:19.091645"], ["updated_at", "2021-10-26 02:24:19.091645"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 13], ["created_at", "2021-10-26 02:24:19.095130"], ["updated_at", "2021-10-26 02:24:19.095130"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 13], ["created_at", "2021-10-26 02:24:19.097085"], ["updated_at", "2021-10-26 02:24:19.097085"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:24:19.121883"], ["updated_at", "2021-10-26 02:24:19.121883"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 37], ["application_id", 13], ["created_at", "2021-10-26 02:24:19.139274"], ["updated_at", "2021-10-26 02:24:19.139274"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 38], ["application_id", 13], ["created_at", "2021-10-26 02:24:19.141924"], ["updated_at", "2021-10-26 02:24:19.141924"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/13” for 127.0.0.1 at 2021-10-25 20:24:19 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"13"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
[1m[36mCACHE Application Load (0.0ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (0.5ms)
Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.3ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:24:19.199138"], ["updated_at", "2021-10-26 02:24:19.199138"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 14], ["created_at", "2021-10-26 02:24:19.200675"], ["updated_at", "2021-10-26 02:24:19.200675"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 14], ["created_at", "2021-10-26 02:24:19.202177"], ["updated_at", "2021-10-26 02:24:19.202177"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 14], ["created_at", "2021-10-26 02:24:19.203239"], ["updated_at", "2021-10-26 02:24:19.203239"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:24:19.204240"], ["updated_at", "2021-10-26 02:24:19.204240"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/14” for 127.0.0.1 at 2021-10-25 20:24:19 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"14"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 14], ["LIMIT", 1]]
[1m[36mCACHE Application Load (0.0ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 14], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (0.4ms)
Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:28:31.314497"], ["updated_at", "2021-10-26 02:28:31.314497"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 15], ["created_at", "2021-10-26 02:28:31.345602"], ["updated_at", "2021-10-26 02:28:31.345602"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 15], ["created_at", "2021-10-26 02:28:31.348047"], ["updated_at", "2021-10-26 02:28:31.348047"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 15], ["created_at", "2021-10-26 02:28:31.349242"], ["updated_at", "2021-10-26 02:28:31.349242"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:28:31.366338"], ["updated_at", "2021-10-26 02:28:31.366338"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.7ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 43], ["application_id", 15], ["created_at", "2021-10-26 02:28:31.383703"], ["updated_at", "2021-10-26 02:28:31.383703"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.2ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 44], ["application_id", 15], ["created_at", "2021-10-26 02:28:31.385542"], ["updated_at", "2021-10-26 02:28:31.385542"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/15” for 127.0.0.1 at 2021-10-25 20:28:31 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"15"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 15], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 15], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (0.5ms)
Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.6ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:28:31.441792"], ["updated_at", "2021-10-26 02:28:31.441792"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 16], ["created_at", "2021-10-26 02:28:31.443310"], ["updated_at", "2021-10-26 02:28:31.443310"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 16], ["created_at", "2021-10-26 02:28:31.444500"], ["updated_at", "2021-10-26 02:28:31.444500"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 16], ["created_at", "2021-10-26 02:28:31.446122"], ["updated_at", "2021-10-26 02:28:31.446122"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:28:31.447088"], ["updated_at", "2021-10-26 02:28:31.447088"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/16” for 127.0.0.1 at 2021-10-25 20:28:31 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"16"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 16], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 16], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (0.4ms)
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.6ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:32:48.754745"], ["updated_at", "2021-10-26 02:32:48.754745"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 17], ["created_at", "2021-10-26 02:32:48.783971"], ["updated_at", "2021-10-26 02:32:48.783971"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 17], ["created_at", "2021-10-26 02:32:48.786432"], ["updated_at", "2021-10-26 02:32:48.786432"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 17], ["created_at", "2021-10-26 02:32:48.787635"], ["updated_at", "2021-10-26 02:32:48.787635"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:32:48.803320"], ["updated_at", "2021-10-26 02:32:48.803320"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.7ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 49], ["application_id", 17], ["created_at", "2021-10-26 02:32:48.820236"], ["updated_at", "2021-10-26 02:32:48.820236"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.2ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 50], ["application_id", 17], ["created_at", "2021-10-26 02:32:48.821916"], ["updated_at", "2021-10-26 02:32:48.821916"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/17” for 127.0.0.1 at 2021-10-25 20:32:48 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"17"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 17], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 17], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (76378.0ms)
Completed 500 Internal Server Error in 76388ms (ActiveRecord: 0.6ms)
[1m[35m (1.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:34:09.178872"], ["updated_at", "2021-10-26 02:34:09.178872"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 18], ["created_at", "2021-10-26 02:34:09.212218"], ["updated_at", "2021-10-26 02:34:09.212218"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 18], ["created_at", "2021-10-26 02:34:09.214503"], ["updated_at", "2021-10-26 02:34:09.214503"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 18], ["created_at", "2021-10-26 02:34:09.215679"], ["updated_at", "2021-10-26 02:34:09.215679"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:34:09.232369"], ["updated_at", "2021-10-26 02:34:09.232369"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.3ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 52], ["application_id", 18], ["created_at", "2021-10-26 02:34:09.249830"], ["updated_at", "2021-10-26 02:34:09.249830"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 53], ["application_id", 18], ["created_at", "2021-10-26 02:34:09.252229"], ["updated_at", "2021-10-26 02:34:09.252229"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/18” for 127.0.0.1 at 2021-10-25 20:34:09 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"18"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 18], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 18], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (85598.4ms)
Completed 500 Internal Server Error in 85608ms (ActiveRecord: 0.6ms)
[1m[35m (1.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:37:34.816360"], ["updated_at", "2021-10-26 02:37:34.816360"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 19], ["created_at", "2021-10-26 02:37:34.849068"], ["updated_at", "2021-10-26 02:37:34.849068"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 19], ["created_at", "2021-10-26 02:37:34.851445"], ["updated_at", "2021-10-26 02:37:34.851445"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 19], ["created_at", "2021-10-26 02:37:34.852633"], ["updated_at", "2021-10-26 02:37:34.852633"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:37:34.870006"], ["updated_at", "2021-10-26 02:37:34.870006"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.9ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 55], ["application_id", 19], ["created_at", "2021-10-26 02:37:34.887768"], ["updated_at", "2021-10-26 02:37:34.887768"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.2ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 56], ["application_id", 19], ["created_at", "2021-10-26 02:37:34.889714"], ["updated_at", "2021-10-26 02:37:34.889714"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/19” for 127.0.0.1 at 2021-10-25 20:37:34 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"19"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 19], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 19], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (0.5ms)
Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.5ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:37:34.946158"], ["updated_at", "2021-10-26 02:37:34.946158"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 20], ["created_at", "2021-10-26 02:37:34.947537"], ["updated_at", "2021-10-26 02:37:34.947537"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 20], ["created_at", "2021-10-26 02:37:34.948939"], ["updated_at", "2021-10-26 02:37:34.948939"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 20], ["created_at", "2021-10-26 02:37:34.950293"], ["updated_at", "2021-10-26 02:37:34.950293"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:37:34.951264"], ["updated_at", "2021-10-26 02:37:34.951264"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/20” for 127.0.0.1 at 2021-10-25 20:37:34 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"20"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 20], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 20], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (0.4ms)
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.6ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:38:23.437627"], ["updated_at", "2021-10-26 02:38:23.437627"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 21], ["created_at", "2021-10-26 02:38:23.477515"], ["updated_at", "2021-10-26 02:38:23.477515"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 21], ["created_at", "2021-10-26 02:38:23.480429"], ["updated_at", "2021-10-26 02:38:23.480429"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 21], ["created_at", "2021-10-26 02:38:23.482972"], ["updated_at", "2021-10-26 02:38:23.482972"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:38:23.509818"], ["updated_at", "2021-10-26 02:38:23.509818"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (2.0ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 61], ["application_id", 21], ["created_at", "2021-10-26 02:38:23.527642"], ["updated_at", "2021-10-26 02:38:23.527642"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 62], ["application_id", 21], ["created_at", "2021-10-26 02:38:23.530792"], ["updated_at", "2021-10-26 02:38:23.530792"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/21” for 127.0.0.1 at 2021-10-25 20:38:23 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"21"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 21], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 21], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (3.5ms)
Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.8ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:38:23.590083"], ["updated_at", "2021-10-26 02:38:23.590083"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 22], ["created_at", "2021-10-26 02:38:23.591672"], ["updated_at", "2021-10-26 02:38:23.591672"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 22], ["created_at", "2021-10-26 02:38:23.593183"], ["updated_at", "2021-10-26 02:38:23.593183"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 22], ["created_at", "2021-10-26 02:38:23.594278"], ["updated_at", "2021-10-26 02:38:23.594278"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:38:23.595261"], ["updated_at", "2021-10-26 02:38:23.595261"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/22” for 127.0.0.1 at 2021-10-25 20:38:23 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"22"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 22], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 22], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (1.9ms)
Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:39:19.108218"], ["updated_at", "2021-10-26 02:39:19.108218"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 23], ["created_at", "2021-10-26 02:39:19.140854"], ["updated_at", "2021-10-26 02:39:19.140854"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 23], ["created_at", "2021-10-26 02:39:19.142738"], ["updated_at", "2021-10-26 02:39:19.142738"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 23], ["created_at", "2021-10-26 02:39:19.144103"], ["updated_at", "2021-10-26 02:39:19.144103"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:39:19.160856"], ["updated_at", "2021-10-26 02:39:19.160856"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.3ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 67], ["application_id", 23], ["created_at", "2021-10-26 02:39:19.173078"], ["updated_at", "2021-10-26 02:39:19.173078"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.7ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 68], ["application_id", 23], ["created_at", "2021-10-26 02:39:19.175586"], ["updated_at", "2021-10-26 02:39:19.175586"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/23” for 127.0.0.1 at 2021-10-25 20:39:19 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"23"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 23], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 23], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 23)[0m
Rendered applications/show.html.erb within layouts/application (9.1ms)
Completed 200 OK in 101ms (Views: 93.3ms | ActiveRecord: 2.3ms) Started GET “/pets/67” for 127.0.0.1 at 2021-10-25 20:39:19 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"67"}
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 23], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.6ms) Started GET “/applications/23” for 127.0.0.1 at 2021-10-25 20:39:19 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"23"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 23], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 23], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 23)[0m
Rendered applications/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.4ms) Started GET “/pets/68” for 127.0.0.1 at 2021-10-25 20:39:19 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"68"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 23], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.6ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 02:39:19.360630"], ["updated_at", "2021-10-26 02:39:19.360630"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 24], ["created_at", "2021-10-26 02:39:19.362329"], ["updated_at", "2021-10-26 02:39:19.362329"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 24], ["created_at", "2021-10-26 02:39:19.363564"], ["updated_at", "2021-10-26 02:39:19.363564"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 24], ["created_at", "2021-10-26 02:39:19.364571"], ["updated_at", "2021-10-26 02:39:19.364571"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 02:39:19.365857"], ["updated_at", "2021-10-26 02:39:19.365857"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/24” for 127.0.0.1 at 2021-10-25 20:39:19 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"24"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 24], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 24], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 24)[0m
Rendered applications/show.html.erb within layouts/application (1.5ms)
Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.3ms) Started GET “/applications/24?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-25 20:39:19 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"24"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 24], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 24], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 24)[0m
Rendered applications/show.html.erb within layouts/application (1.2ms)
Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.9ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 13:32:32.161864"], ["updated_at", "2021-10-26 13:32:32.161864"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 25], ["created_at", "2021-10-26 13:32:32.184454"], ["updated_at", "2021-10-26 13:32:32.184454"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 25], ["created_at", "2021-10-26 13:32:32.187279"], ["updated_at", "2021-10-26 13:32:32.187279"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 25], ["created_at", "2021-10-26 13:32:32.188591"], ["updated_at", "2021-10-26 13:32:32.188591"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.9ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 13:32:32.189790"], ["updated_at", "2021-10-26 13:32:32.189790"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 73], ["application_id", 25], ["created_at", "2021-10-26 13:32:32.204322"], ["updated_at", "2021-10-26 13:32:32.204322"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 74], ["application_id", 25], ["created_at", "2021-10-26 13:32:32.206796"], ["updated_at", "2021-10-26 13:32:32.206796"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 13:33:03.250310"], ["updated_at", "2021-10-26 13:33:03.250310"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.1ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 26], ["created_at", "2021-10-26 13:33:03.272176"], ["updated_at", "2021-10-26 13:33:03.272176"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 26], ["created_at", "2021-10-26 13:33:03.274354"], ["updated_at", "2021-10-26 13:33:03.274354"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 26], ["created_at", "2021-10-26 13:33:03.275935"], ["updated_at", "2021-10-26 13:33:03.275935"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 13:33:03.277273"], ["updated_at", "2021-10-26 13:33:03.277273"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 76], ["application_id", 26], ["created_at", "2021-10-26 13:33:03.291133"], ["updated_at", "2021-10-26 13:33:03.291133"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 77], ["application_id", 26], ["created_at", "2021-10-26 13:33:03.293699"], ["updated_at", "2021-10-26 13:33:03.293699"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (1.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 26)[0m
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 26)[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.0ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 13:55:16.599860"], ["updated_at", "2021-10-26 13:55:16.599860"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 27], ["created_at", "2021-10-26 13:55:16.623321"], ["updated_at", "2021-10-26 13:55:16.623321"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 27], ["created_at", "2021-10-26 13:55:16.626308"], ["updated_at", "2021-10-26 13:55:16.626308"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 27], ["created_at", "2021-10-26 13:55:16.627498"], ["updated_at", "2021-10-26 13:55:16.627498"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 13:55:16.628553"], ["updated_at", "2021-10-26 13:55:16.628553"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 79], ["application_id", 27], ["created_at", "2021-10-26 13:55:16.642122"], ["updated_at", "2021-10-26 13:55:16.642122"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 80], ["application_id", 27], ["created_at", "2021-10-26 13:55:16.644594"], ["updated_at", "2021-10-26 13:55:16.644594"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (1.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 27)[0m
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 27)[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 13:55:16.654071"], ["updated_at", "2021-10-26 13:55:16.654071"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 28], ["created_at", "2021-10-26 13:55:16.655447"], ["updated_at", "2021-10-26 13:55:16.655447"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 28], ["created_at", "2021-10-26 13:55:16.656691"], ["updated_at", "2021-10-26 13:55:16.656691"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 28], ["created_at", "2021-10-26 13:55:16.657903"], ["updated_at", "2021-10-26 13:55:16.657903"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 13:55:16.658986"], ["updated_at", "2021-10-26 13:55:16.658986"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 82], ["application_id", 28], ["created_at", "2021-10-26 13:55:16.660498"], ["updated_at", "2021-10-26 13:55:16.660498"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 83], ["application_id", 28], ["created_at", "2021-10-26 13:55:16.661914"], ["updated_at", "2021-10-26 13:55:16.661914"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 28], ["LIMIT", 1]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 13:58:03.457458"], ["updated_at", "2021-10-26 13:58:03.457458"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 29], ["created_at", "2021-10-26 13:58:03.480055"], ["updated_at", "2021-10-26 13:58:03.480055"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 29], ["created_at", "2021-10-26 13:58:03.482756"], ["updated_at", "2021-10-26 13:58:03.482756"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 29], ["created_at", "2021-10-26 13:58:03.483949"], ["updated_at", "2021-10-26 13:58:03.483949"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 13:58:03.484967"], ["updated_at", "2021-10-26 13:58:03.484967"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 85], ["application_id", 29], ["created_at", "2021-10-26 13:58:03.498832"], ["updated_at", "2021-10-26 13:58:03.498832"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 86], ["application_id", 29], ["created_at", "2021-10-26 13:58:03.501665"], ["updated_at", "2021-10-26 13:58:03.501665"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (1.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 29)[0m
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 29)[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 13:58:03.511892"], ["updated_at", "2021-10-26 13:58:03.511892"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 30], ["created_at", "2021-10-26 13:58:03.513234"], ["updated_at", "2021-10-26 13:58:03.513234"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 30], ["created_at", "2021-10-26 13:58:03.514543"], ["updated_at", "2021-10-26 13:58:03.514543"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 30], ["created_at", "2021-10-26 13:58:03.515962"], ["updated_at", "2021-10-26 13:58:03.515962"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 13:58:03.517064"], ["updated_at", "2021-10-26 13:58:03.517064"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 88], ["application_id", 30], ["created_at", "2021-10-26 13:58:03.518592"], ["updated_at", "2021-10-26 13:58:03.518592"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 89], ["application_id", 30], ["created_at", "2021-10-26 13:58:03.520105"], ["updated_at", "2021-10-26 13:58:03.520105"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 30], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 14:06:07.334095"], ["updated_at", "2021-10-26 14:06:07.334095"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 31], ["created_at", "2021-10-26 14:06:07.357195"], ["updated_at", "2021-10-26 14:06:07.357195"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 31], ["created_at", "2021-10-26 14:06:07.359502"], ["updated_at", "2021-10-26 14:06:07.359502"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 31], ["created_at", "2021-10-26 14:06:07.361277"], ["updated_at", "2021-10-26 14:06:07.361277"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 14:06:07.362475"], ["updated_at", "2021-10-26 14:06:07.362475"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 91], ["application_id", 31], ["created_at", "2021-10-26 14:06:07.376927"], ["updated_at", "2021-10-26 14:06:07.376927"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.1ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 92], ["application_id", 31], ["created_at", "2021-10-26 14:06:07.379673"], ["updated_at", "2021-10-26 14:06:07.379673"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (1.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 31)[0m
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 31)[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 14:06:07.390107"], ["updated_at", "2021-10-26 14:06:07.390107"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 32], ["created_at", "2021-10-26 14:06:07.391510"], ["updated_at", "2021-10-26 14:06:07.391510"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 32], ["created_at", "2021-10-26 14:06:07.393087"], ["updated_at", "2021-10-26 14:06:07.393087"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 32], ["created_at", "2021-10-26 14:06:07.394830"], ["updated_at", "2021-10-26 14:06:07.394830"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 14:06:07.396207"], ["updated_at", "2021-10-26 14:06:07.396207"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 94], ["application_id", 32], ["created_at", "2021-10-26 14:06:07.397865"], ["updated_at", "2021-10-26 14:06:07.397865"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 95], ["application_id", 32], ["created_at", "2021-10-26 14:06:07.399174"], ["updated_at", "2021-10-26 14:06:07.399174"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 32], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 14:06:07.402957"], ["updated_at", "2021-10-26 14:06:07.402957"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 33], ["created_at", "2021-10-26 14:06:07.404218"], ["updated_at", "2021-10-26 14:06:07.404218"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 33], ["created_at", "2021-10-26 14:06:07.405451"], ["updated_at", "2021-10-26 14:06:07.405451"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 33], ["created_at", "2021-10-26 14:06:07.406803"], ["updated_at", "2021-10-26 14:06:07.406803"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 14:06:07.407794"], ["updated_at", "2021-10-26 14:06:07.407794"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 97], ["application_id", 33], ["created_at", "2021-10-26 14:06:07.409244"], ["updated_at", "2021-10-26 14:06:07.409244"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.9ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 98], ["application_id", 33], ["created_at", "2021-10-26 14:06:07.410557"], ["updated_at", "2021-10-26 14:06:07.410557"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 33], ["LIMIT", 1]]
[1m[36mPet Load (1.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1[0m [["LIMIT", 11]]
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1[0m [["LIMIT", 11]]
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1[0m [["LIMIT", 11]]
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1[0m [["LIMIT", 11]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1[0m [["LIMIT", 11]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1[0m [["LIMIT", 11]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 14:07:54.824904"], ["updated_at", "2021-10-26 14:07:54.824904"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 34], ["created_at", "2021-10-26 14:07:54.846956"], ["updated_at", "2021-10-26 14:07:54.846956"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 34], ["created_at", "2021-10-26 14:07:54.849368"], ["updated_at", "2021-10-26 14:07:54.849368"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 34], ["created_at", "2021-10-26 14:07:54.850605"], ["updated_at", "2021-10-26 14:07:54.850605"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.7ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 14:07:54.851836"], ["updated_at", "2021-10-26 14:07:54.851836"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (2.2ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 100], ["application_id", 34], ["created_at", "2021-10-26 14:07:54.865828"], ["updated_at", "2021-10-26 14:07:54.865828"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 101], ["application_id", 34], ["created_at", "2021-10-26 14:07:54.869176"], ["updated_at", "2021-10-26 14:07:54.869176"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (2.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 34)[0m
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 34)[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 14:07:54.879243"], ["updated_at", "2021-10-26 14:07:54.879243"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 35], ["created_at", "2021-10-26 14:07:54.881125"], ["updated_at", "2021-10-26 14:07:54.881125"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 35], ["created_at", "2021-10-26 14:07:54.882695"], ["updated_at", "2021-10-26 14:07:54.882695"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 35], ["created_at", "2021-10-26 14:07:54.884044"], ["updated_at", "2021-10-26 14:07:54.884044"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 14:07:54.885425"], ["updated_at", "2021-10-26 14:07:54.885425"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 103], ["application_id", 35], ["created_at", "2021-10-26 14:07:54.887132"], ["updated_at", "2021-10-26 14:07:54.887132"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 104], ["application_id", 35], ["created_at", "2021-10-26 14:07:54.888477"], ["updated_at", "2021-10-26 14:07:54.888477"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 35], ["LIMIT", 1]]
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 14:07:54.893426"], ["updated_at", "2021-10-26 14:07:54.893426"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 36], ["created_at", "2021-10-26 14:07:54.895342"], ["updated_at", "2021-10-26 14:07:54.895342"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 36], ["created_at", "2021-10-26 14:07:54.896709"], ["updated_at", "2021-10-26 14:07:54.896709"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 36], ["created_at", "2021-10-26 14:07:54.898062"], ["updated_at", "2021-10-26 14:07:54.898062"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 14:07:54.899197"], ["updated_at", "2021-10-26 14:07:54.899197"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 106], ["application_id", 36], ["created_at", "2021-10-26 14:07:54.900846"], ["updated_at", "2021-10-26 14:07:54.900846"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 107], ["application_id", 36], ["created_at", "2021-10-26 14:07:54.902433"], ["updated_at", "2021-10-26 14:07:54.902433"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1[0m [["LIMIT", 11]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1[0m [["LIMIT", 11]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1[0m [["LIMIT", 11]]
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1[0m [["LIMIT", 11]]
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1[0m [["LIMIT", 11]]
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1[0m [["LIMIT", 11]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.9ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 14:10:01.429353"], ["updated_at", "2021-10-26 14:10:01.429353"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 37], ["created_at", "2021-10-26 14:10:01.453225"], ["updated_at", "2021-10-26 14:10:01.453225"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 37], ["created_at", "2021-10-26 14:10:01.455654"], ["updated_at", "2021-10-26 14:10:01.455654"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 37], ["created_at", "2021-10-26 14:10:01.456976"], ["updated_at", "2021-10-26 14:10:01.456976"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 14:10:01.458240"], ["updated_at", "2021-10-26 14:10:01.458240"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.3ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 109], ["application_id", 37], ["created_at", "2021-10-26 14:10:01.473161"], ["updated_at", "2021-10-26 14:10:01.473161"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 110], ["application_id", 37], ["created_at", "2021-10-26 14:10:01.475592"], ["updated_at", "2021-10-26 14:10:01.475592"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (1.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 37)[0m
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 37)[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 14:10:01.485183"], ["updated_at", "2021-10-26 14:10:01.485183"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 38], ["created_at", "2021-10-26 14:10:01.486663"], ["updated_at", "2021-10-26 14:10:01.486663"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 38], ["created_at", "2021-10-26 14:10:01.488143"], ["updated_at", "2021-10-26 14:10:01.488143"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 38], ["created_at", "2021-10-26 14:10:01.489392"], ["updated_at", "2021-10-26 14:10:01.489392"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 14:10:01.490518"], ["updated_at", "2021-10-26 14:10:01.490518"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.9ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 112], ["application_id", 38], ["created_at", "2021-10-26 14:10:01.492286"], ["updated_at", "2021-10-26 14:10:01.492286"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 113], ["application_id", 38], ["created_at", "2021-10-26 14:10:01.494222"], ["updated_at", "2021-10-26 14:10:01.494222"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 14:10:01.498115"], ["updated_at", "2021-10-26 14:10:01.498115"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 39], ["created_at", "2021-10-26 14:10:01.499607"], ["updated_at", "2021-10-26 14:10:01.499607"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 39], ["created_at", "2021-10-26 14:10:01.500921"], ["updated_at", "2021-10-26 14:10:01.500921"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 39], ["created_at", "2021-10-26 14:10:01.502299"], ["updated_at", "2021-10-26 14:10:01.502299"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 14:10:01.503319"], ["updated_at", "2021-10-26 14:10:01.503319"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 115], ["application_id", 39], ["created_at", "2021-10-26 14:10:01.504964"], ["updated_at", "2021-10-26 14:10:01.504964"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.7ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 116], ["application_id", 39], ["created_at", "2021-10-26 14:10:01.506584"], ["updated_at", "2021-10-26 14:10:01.506584"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 39], ["LIMIT", 1]]
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1[0m [["LIMIT", 11]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1[0m [["LIMIT", 11]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1[0m [["LIMIT", 11]]
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1[0m [["LIMIT", 11]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1[0m [["LIMIT", 11]]
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%') LIMIT $1[0m [["LIMIT", 11]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 14:15:29.170159"], ["updated_at", "2021-10-26 14:15:29.170159"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 40], ["created_at", "2021-10-26 14:15:29.192166"], ["updated_at", "2021-10-26 14:15:29.192166"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 40], ["created_at", "2021-10-26 14:15:29.194692"], ["updated_at", "2021-10-26 14:15:29.194692"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 40], ["created_at", "2021-10-26 14:15:29.196021"], ["updated_at", "2021-10-26 14:15:29.196021"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 14:15:29.197366"], ["updated_at", "2021-10-26 14:15:29.197366"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.9ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 118], ["application_id", 40], ["created_at", "2021-10-26 14:15:29.212003"], ["updated_at", "2021-10-26 14:15:29.212003"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 119], ["application_id", 40], ["created_at", "2021-10-26 14:15:29.215066"], ["updated_at", "2021-10-26 14:15:29.215066"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (1.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 40)[0m
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 40)[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 14:15:29.224696"], ["updated_at", "2021-10-26 14:15:29.224696"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 41], ["created_at", "2021-10-26 14:15:29.226140"], ["updated_at", "2021-10-26 14:15:29.226140"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 41], ["created_at", "2021-10-26 14:15:29.227508"], ["updated_at", "2021-10-26 14:15:29.227508"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 41], ["created_at", "2021-10-26 14:15:29.228836"], ["updated_at", "2021-10-26 14:15:29.228836"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 14:15:29.230143"], ["updated_at", "2021-10-26 14:15:29.230143"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 121], ["application_id", 41], ["created_at", "2021-10-26 14:15:29.231917"], ["updated_at", "2021-10-26 14:15:29.231917"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 122], ["application_id", 41], ["created_at", "2021-10-26 14:15:29.233286"], ["updated_at", "2021-10-26 14:15:29.233286"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 14:15:29.237180"], ["updated_at", "2021-10-26 14:15:29.237180"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.0ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 42], ["created_at", "2021-10-26 14:15:29.238967"], ["updated_at", "2021-10-26 14:15:29.238967"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 42], ["created_at", "2021-10-26 14:15:29.240992"], ["updated_at", "2021-10-26 14:15:29.240992"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 42], ["created_at", "2021-10-26 14:15:29.242354"], ["updated_at", "2021-10-26 14:15:29.242354"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 14:15:29.243503"], ["updated_at", "2021-10-26 14:15:29.243503"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 124], ["application_id", 42], ["created_at", "2021-10-26 14:15:29.245215"], ["updated_at", "2021-10-26 14:15:29.245215"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.7ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 125], ["application_id", 42], ["created_at", "2021-10-26 14:15:29.246847"], ["updated_at", "2021-10-26 14:15:29.246847"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.8ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.0ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:32:57.549917"], ["updated_at", "2021-10-26 19:32:57.549917"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 43], ["created_at", "2021-10-26 19:32:57.582769"], ["updated_at", "2021-10-26 19:32:57.582769"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 43], ["created_at", "2021-10-26 19:32:57.585464"], ["updated_at", "2021-10-26 19:32:57.585464"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 43], ["created_at", "2021-10-26 19:32:57.586756"], ["updated_at", "2021-10-26 19:32:57.586756"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (1.1ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:32:57.603821"], ["updated_at", "2021-10-26 19:32:57.603821"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.8ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 127], ["application_id", 43], ["created_at", "2021-10-26 19:32:57.621942"], ["updated_at", "2021-10-26 19:32:57.621942"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.3ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 128], ["application_id", 43], ["created_at", "2021-10-26 19:32:57.623944"], ["updated_at", "2021-10-26 19:32:57.623944"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/43” for 127.0.0.1 at 2021-10-26 13:32:57 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"43"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 43)[0m
Rendered applications/show.html.erb within layouts/application (8.6ms)
Completed 200 OK in 106ms (Views: 97.8ms | ActiveRecord: 2.5ms) Started GET “/pets/127” for 127.0.0.1 at 2021-10-26 13:32:57 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"127"}
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 127], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.7ms) Started GET “/applications/43” for 127.0.0.1 at 2021-10-26 13:32:57 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"43"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 43)[0m
Rendered applications/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.2ms) Started GET “/pets/128” for 127.0.0.1 at 2021-10-26 13:32:57 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"128"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 128], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.4ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:32:57.819114"], ["updated_at", "2021-10-26 19:32:57.819114"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 44], ["created_at", "2021-10-26 19:32:57.820541"], ["updated_at", "2021-10-26 19:32:57.820541"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 44], ["created_at", "2021-10-26 19:32:57.821776"], ["updated_at", "2021-10-26 19:32:57.821776"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 44], ["created_at", "2021-10-26 19:32:57.823506"], ["updated_at", "2021-10-26 19:32:57.823506"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:32:57.824859"], ["updated_at", "2021-10-26 19:32:57.824859"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/44” for 127.0.0.1 at 2021-10-26 13:32:57 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"44"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 44)[0m
Rendered applications/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.9ms) Started GET “/applications/44?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 13:32:57 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"44"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 44)[0m
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (2.7ms)
Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 1.7ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.0ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:38:26.947389"], ["updated_at", "2021-10-26 19:38:26.947389"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 45], ["created_at", "2021-10-26 19:38:26.983120"], ["updated_at", "2021-10-26 19:38:26.983120"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 45], ["created_at", "2021-10-26 19:38:26.986061"], ["updated_at", "2021-10-26 19:38:26.986061"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 45], ["created_at", "2021-10-26 19:38:26.987340"], ["updated_at", "2021-10-26 19:38:26.987340"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:38:27.004648"], ["updated_at", "2021-10-26 19:38:27.004648"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 133], ["application_id", 45], ["created_at", "2021-10-26 19:38:27.021952"], ["updated_at", "2021-10-26 19:38:27.021952"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 134], ["application_id", 45], ["created_at", "2021-10-26 19:38:27.024531"], ["updated_at", "2021-10-26 19:38:27.024531"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/45” for 127.0.0.1 at 2021-10-26 13:38:27 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"45"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 45)[0m
Rendered applications/show.html.erb within layouts/application (8.3ms)
Completed 200 OK in 97ms (Views: 88.5ms | ActiveRecord: 2.2ms) Started GET “/pets/133” for 127.0.0.1 at 2021-10-26 13:38:27 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"133"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 133], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.6ms) Started GET “/applications/45” for 127.0.0.1 at 2021-10-26 13:38:27 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"45"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 45)[0m
Rendered applications/show.html.erb within layouts/application (1.9ms)
Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.7ms) Started GET “/pets/134” for 127.0.0.1 at 2021-10-26 13:38:27 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"134"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 134], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.6ms)
[1m[35m (0.5ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:38:27.214449"], ["updated_at", "2021-10-26 19:38:27.214449"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 46], ["created_at", "2021-10-26 19:38:27.215939"], ["updated_at", "2021-10-26 19:38:27.215939"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 46], ["created_at", "2021-10-26 19:38:27.217703"], ["updated_at", "2021-10-26 19:38:27.217703"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 46], ["created_at", "2021-10-26 19:38:27.219145"], ["updated_at", "2021-10-26 19:38:27.219145"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:38:27.220148"], ["updated_at", "2021-10-26 19:38:27.220148"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/46” for 127.0.0.1 at 2021-10-26 13:38:27 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"46"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 46)[0m
Rendered applications/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.9ms) Started GET “/applications/46?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 13:38:27 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"46"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 46)[0m
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (2.8ms)
Completed 200 OK in 4ms (Views: 2.1ms | ActiveRecord: 1.7ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:40:02.436257"], ["updated_at", "2021-10-26 19:40:02.436257"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 47], ["created_at", "2021-10-26 19:40:02.467936"], ["updated_at", "2021-10-26 19:40:02.467936"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 47], ["created_at", "2021-10-26 19:40:02.470728"], ["updated_at", "2021-10-26 19:40:02.470728"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 47], ["created_at", "2021-10-26 19:40:02.472089"], ["updated_at", "2021-10-26 19:40:02.472089"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:40:02.488631"], ["updated_at", "2021-10-26 19:40:02.488631"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 139], ["application_id", 47], ["created_at", "2021-10-26 19:40:02.505850"], ["updated_at", "2021-10-26 19:40:02.505850"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 140], ["application_id", 47], ["created_at", "2021-10-26 19:40:02.508422"], ["updated_at", "2021-10-26 19:40:02.508422"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/47” for 127.0.0.1 at 2021-10-26 13:40:02 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"47"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 47)[0m
Rendered applications/show.html.erb within layouts/application (7.8ms)
Completed 200 OK in 92ms (Views: 84.0ms | ActiveRecord: 2.1ms) Started GET “/pets/139” for 127.0.0.1 at 2021-10-26 13:40:02 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"139"}
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 139], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.2ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.7ms) Started GET “/applications/47” for 127.0.0.1 at 2021-10-26 13:40:02 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"47"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 47)[0m
Rendered applications/show.html.erb within layouts/application (1.5ms)
Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.5ms) Started GET “/pets/140” for 127.0.0.1 at 2021-10-26 13:40:02 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"140"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 140], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.6ms)
[1m[35m (0.6ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:40:02.678093"], ["updated_at", "2021-10-26 19:40:02.678093"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 48], ["created_at", "2021-10-26 19:40:02.679524"], ["updated_at", "2021-10-26 19:40:02.679524"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 48], ["created_at", "2021-10-26 19:40:02.680676"], ["updated_at", "2021-10-26 19:40:02.680676"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 48], ["created_at", "2021-10-26 19:40:02.681772"], ["updated_at", "2021-10-26 19:40:02.681772"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (1.0ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:40:02.683190"], ["updated_at", "2021-10-26 19:40:02.683190"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/48” for 127.0.0.1 at 2021-10-26 13:40:02 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"48"}
[1m[36mApplication Load (1.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 48)[0m
Rendered applications/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 4ms (Views: 1.1ms | ActiveRecord: 2.3ms) Started GET “/applications/48?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 13:40:02 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"48"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 48)[0m
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (2.9ms)
Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 2.1ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:40:02.713028"], ["updated_at", "2021-10-26 19:40:02.713028"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.0ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 49], ["created_at", "2021-10-26 19:40:02.715939"], ["updated_at", "2021-10-26 19:40:02.715939"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:40:02.718857"], ["updated_at", "2021-10-26 19:40:02.718857"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/49” for 127.0.0.1 at 2021-10-26 13:40:02 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"49"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 49)[0m
Rendered applications/show.html.erb within layouts/application (2.1ms)
Completed 200 OK in 5ms (Views: 2.9ms | ActiveRecord: 1.3ms) Started GET “/applications/49?utf8=%E2%9C%93&search=bella&commit=Search” for 127.0.0.1 at 2021-10-26 13:40:02 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"bella", "commit"=>"Search", "id"=>"49"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 49)[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%bella%')[0m
Rendered applications/show.html.erb within layouts/application (2.0ms)
Completed 200 OK in 5ms (Views: 2.7ms | ActiveRecord: 1.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.9ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:40:34.201874"], ["updated_at", "2021-10-26 19:40:34.201874"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 50], ["created_at", "2021-10-26 19:40:34.241089"], ["updated_at", "2021-10-26 19:40:34.241089"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 50], ["created_at", "2021-10-26 19:40:34.244421"], ["updated_at", "2021-10-26 19:40:34.244421"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 50], ["created_at", "2021-10-26 19:40:34.246487"], ["updated_at", "2021-10-26 19:40:34.246487"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.7ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:40:34.274243"], ["updated_at", "2021-10-26 19:40:34.274243"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.9ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 146], ["application_id", 50], ["created_at", "2021-10-26 19:40:34.292688"], ["updated_at", "2021-10-26 19:40:34.292688"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.7ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 147], ["application_id", 50], ["created_at", "2021-10-26 19:40:34.295787"], ["updated_at", "2021-10-26 19:40:34.295787"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/50” for 127.0.0.1 at 2021-10-26 13:40:34 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"50"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 50], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 50], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (3.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 50)[0m
Rendered applications/show.html.erb within layouts/application (9.0ms)
Completed 200 OK in 92ms (Views: 82.6ms | ActiveRecord: 3.9ms) Started GET “/pets/146” for 127.0.0.1 at 2021-10-26 13:40:34 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"146"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 146], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 50], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.6ms) Started GET “/applications/50” for 127.0.0.1 at 2021-10-26 13:40:34 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"50"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 50], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 50], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 50)[0m
Rendered applications/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.1ms) Started GET “/pets/147” for 127.0.0.1 at 2021-10-26 13:40:34 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"147"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 147], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 50], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.4ms)
[1m[35m (0.5ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:40:34.450867"], ["updated_at", "2021-10-26 19:40:34.450867"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 51], ["created_at", "2021-10-26 19:40:34.452672"], ["updated_at", "2021-10-26 19:40:34.452672"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 51], ["created_at", "2021-10-26 19:40:34.453865"], ["updated_at", "2021-10-26 19:40:34.453865"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 51], ["created_at", "2021-10-26 19:40:34.454890"], ["updated_at", "2021-10-26 19:40:34.454890"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:40:34.455877"], ["updated_at", "2021-10-26 19:40:34.455877"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/51” for 127.0.0.1 at 2021-10-26 13:40:34 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"51"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 51], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 51], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 51)[0m
Rendered applications/show.html.erb within layouts/application (1.0ms)
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.0ms) Started GET “/applications/51?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 13:40:34 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"51"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 51], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 51], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 51)[0m
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (2.3ms)
Completed 200 OK in 4ms (Views: 1.6ms | ActiveRecord: 1.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:40:34.475976"], ["updated_at", "2021-10-26 19:40:34.475976"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 52], ["created_at", "2021-10-26 19:40:34.477429"], ["updated_at", "2021-10-26 19:40:34.477429"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:40:34.478510"], ["updated_at", "2021-10-26 19:40:34.478510"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/52” for 127.0.0.1 at 2021-10-26 13:40:34 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 52], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 52], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 52)[0m
Rendered applications/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.0ms) Started GET “/applications/52?utf8=%E2%9C%93&search=bella&commit=Search” for 127.0.0.1 at 2021-10-26 13:40:34 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"bella", "commit"=>"Search", "id"=>"52"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 52], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 52], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 52)[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%bella%')[0m
Rendered applications/show.html.erb within layouts/application (1.7ms)
Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.5ms)
[1m[35m (0.5ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:43:56.043897"], ["updated_at", "2021-10-26 19:43:56.043897"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 53], ["created_at", "2021-10-26 19:43:56.077208"], ["updated_at", "2021-10-26 19:43:56.077208"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 53], ["created_at", "2021-10-26 19:43:56.079755"], ["updated_at", "2021-10-26 19:43:56.079755"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 53], ["created_at", "2021-10-26 19:43:56.081124"], ["updated_at", "2021-10-26 19:43:56.081124"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:43:56.098181"], ["updated_at", "2021-10-26 19:43:56.098181"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 153], ["application_id", 53], ["created_at", "2021-10-26 19:43:56.114658"], ["updated_at", "2021-10-26 19:43:56.114658"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.2ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 154], ["application_id", 53], ["created_at", "2021-10-26 19:43:56.116379"], ["updated_at", "2021-10-26 19:43:56.116379"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/53” for 127.0.0.1 at 2021-10-26 13:43:56 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"53"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 53], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 53], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 53)[0m
Rendered applications/show.html.erb within layouts/application (8.8ms)
Completed 200 OK in 100ms (Views: 91.3ms | ActiveRecord: 2.7ms) Started GET “/pets/153” for 127.0.0.1 at 2021-10-26 13:43:56 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"153"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 153], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 53], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 0.6ms) Started GET “/applications/53” for 127.0.0.1 at 2021-10-26 13:43:56 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"53"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 53], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 53], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 53)[0m
Rendered applications/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.8ms) Started GET “/pets/154” for 127.0.0.1 at 2021-10-26 13:43:56 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"154"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 154], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 53], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:43:56.301344"], ["updated_at", "2021-10-26 19:43:56.301344"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 54], ["created_at", "2021-10-26 19:43:56.302961"], ["updated_at", "2021-10-26 19:43:56.302961"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 54], ["created_at", "2021-10-26 19:43:56.304063"], ["updated_at", "2021-10-26 19:43:56.304063"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 54], ["created_at", "2021-10-26 19:43:56.305413"], ["updated_at", "2021-10-26 19:43:56.305413"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:43:56.306617"], ["updated_at", "2021-10-26 19:43:56.306617"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/54” for 127.0.0.1 at 2021-10-26 13:43:56 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"54"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 54], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 54], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 54)[0m
Rendered applications/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.4ms) Started GET “/applications/54?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 13:43:56 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"54"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 54], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 54], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 54)[0m
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (3.0ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 2.0ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:43:56.335500"], ["updated_at", "2021-10-26 19:43:56.335500"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 55], ["created_at", "2021-10-26 19:43:56.337546"], ["updated_at", "2021-10-26 19:43:56.337546"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:43:56.339347"], ["updated_at", "2021-10-26 19:43:56.339347"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/55” for 127.0.0.1 at 2021-10-26 13:43:56 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"55"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)[0m
Rendered applications/show.html.erb within layouts/application (1.9ms)
Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 1.0ms) Started GET “/applications/55?utf8=%E2%9C%93&search=bella&commit=Search” for 127.0.0.1 at 2021-10-26 13:43:56 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"bella", "commit"=>"Search", "id"=>"55"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)[0m
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%bella%')[0m
Rendered applications/show.html.erb within layouts/application (1.9ms)
Completed 200 OK in 4ms (Views: 2.1ms | ActiveRecord: 1.2ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:44:27.596424"], ["updated_at", "2021-10-26 19:44:27.596424"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 56], ["created_at", "2021-10-26 19:44:27.636956"], ["updated_at", "2021-10-26 19:44:27.636956"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 56], ["created_at", "2021-10-26 19:44:27.640386"], ["updated_at", "2021-10-26 19:44:27.640386"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 56], ["created_at", "2021-10-26 19:44:27.642334"], ["updated_at", "2021-10-26 19:44:27.642334"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (1.7ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:44:27.672219"], ["updated_at", "2021-10-26 19:44:27.672219"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.8ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 160], ["application_id", 56], ["created_at", "2021-10-26 19:44:27.698752"], ["updated_at", "2021-10-26 19:44:27.698752"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 161], ["application_id", 56], ["created_at", "2021-10-26 19:44:27.701700"], ["updated_at", "2021-10-26 19:44:27.701700"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/56” for 127.0.0.1 at 2021-10-26 13:44:27 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"56"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)[0m
Rendered applications/show.html.erb within layouts/application (7.7ms)
Completed 200 OK in 89ms (Views: 80.8ms | ActiveRecord: 2.5ms) Started GET “/pets/160” for 127.0.0.1 at 2021-10-26 13:44:27 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"160"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 160], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.5ms)
Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.7ms) Started GET “/applications/56” for 127.0.0.1 at 2021-10-26 13:44:27 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"56"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)[0m
Rendered applications/show.html.erb within layouts/application (1.5ms)
Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.4ms) Started GET “/pets/161” for 127.0.0.1 at 2021-10-26 13:44:27 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"161"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 161], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.3ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:44:27.851193"], ["updated_at", "2021-10-26 19:44:27.851193"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 57], ["created_at", "2021-10-26 19:44:27.852773"], ["updated_at", "2021-10-26 19:44:27.852773"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 57], ["created_at", "2021-10-26 19:44:27.854139"], ["updated_at", "2021-10-26 19:44:27.854139"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 57], ["created_at", "2021-10-26 19:44:27.855530"], ["updated_at", "2021-10-26 19:44:27.855530"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:44:27.856810"], ["updated_at", "2021-10-26 19:44:27.856810"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/57” for 127.0.0.1 at 2021-10-26 13:44:27 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"57"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 57)[0m
Rendered applications/show.html.erb within layouts/application (1.5ms)
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.6ms) Started GET “/applications/57?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 13:44:27 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"57"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 57)[0m
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (2.8ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 1.9ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:44:27.878790"], ["updated_at", "2021-10-26 19:44:27.878790"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 58], ["created_at", "2021-10-26 19:44:27.880383"], ["updated_at", "2021-10-26 19:44:27.880383"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:44:27.881519"], ["updated_at", "2021-10-26 19:44:27.881519"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/58” for 127.0.0.1 at 2021-10-26 13:44:27 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"58"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 58], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 58], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 58)[0m
Rendered applications/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.0ms) Started GET “/applications/58?utf8=%E2%9C%93&search=bella&commit=Search” for 127.0.0.1 at 2021-10-26 13:44:27 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"bella", "commit"=>"Search", "id"=>"58"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 58], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 58], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 58)[0m
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%bella%')[0m
Rendered applications/show.html.erb within layouts/application (1.5ms)
Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 1.2ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:45:14.395536"], ["updated_at", "2021-10-26 19:45:14.395536"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 59], ["created_at", "2021-10-26 19:45:14.436998"], ["updated_at", "2021-10-26 19:45:14.436998"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 59], ["created_at", "2021-10-26 19:45:14.440601"], ["updated_at", "2021-10-26 19:45:14.440601"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 59], ["created_at", "2021-10-26 19:45:14.442562"], ["updated_at", "2021-10-26 19:45:14.442562"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.9ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:45:14.472539"], ["updated_at", "2021-10-26 19:45:14.472539"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.3ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 167], ["application_id", 59], ["created_at", "2021-10-26 19:45:14.491276"], ["updated_at", "2021-10-26 19:45:14.491276"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 168], ["application_id", 59], ["created_at", "2021-10-26 19:45:14.493757"], ["updated_at", "2021-10-26 19:45:14.493757"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/59” for 127.0.0.1 at 2021-10-26 13:45:14 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"59"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (2.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 59)[0m
Rendered applications/show.html.erb within layouts/application (8.2ms)
Completed 200 OK in 94ms (Views: 85.2ms | ActiveRecord: 3.0ms) Started GET “/pets/167” for 127.0.0.1 at 2021-10-26 13:45:14 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"167"}
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 167], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.6ms) Started GET “/applications/59” for 127.0.0.1 at 2021-10-26 13:45:14 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"59"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 59)[0m
Rendered applications/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 1.0ms) Started GET “/pets/168” for 127.0.0.1 at 2021-10-26 13:45:14 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"168"}
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 168], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.8ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:45:14.647959"], ["updated_at", "2021-10-26 19:45:14.647959"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 60], ["created_at", "2021-10-26 19:45:14.649551"], ["updated_at", "2021-10-26 19:45:14.649551"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 60], ["created_at", "2021-10-26 19:45:14.650873"], ["updated_at", "2021-10-26 19:45:14.650873"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 60], ["created_at", "2021-10-26 19:45:14.652104"], ["updated_at", "2021-10-26 19:45:14.652104"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:45:14.653351"], ["updated_at", "2021-10-26 19:45:14.653351"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/60” for 127.0.0.1 at 2021-10-26 13:45:14 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"60"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 60], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 60], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 60)[0m
Rendered applications/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.6ms) Started GET “/applications/60?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 13:45:14 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"60"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 60], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 60], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 60)[0m
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (3.3ms)
Completed 200 OK in 5ms (Views: 1.7ms | ActiveRecord: 2.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:45:14.675579"], ["updated_at", "2021-10-26 19:45:14.675579"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 61], ["created_at", "2021-10-26 19:45:14.676982"], ["updated_at", "2021-10-26 19:45:14.676982"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:45:14.678012"], ["updated_at", "2021-10-26 19:45:14.678012"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/61” for 127.0.0.1 at 2021-10-26 13:45:14 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"61"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 61)[0m
Rendered applications/show.html.erb within layouts/application (1.6ms)
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.5ms) Started GET “/applications/61?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 13:45:14 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"61"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 61)[0m
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (2.5ms)
Completed 200 OK in 4ms (Views: 1.5ms | ActiveRecord: 2.0ms) Started POST “/application_pets?app_id=61&pet_id=173” for 127.0.0.1 at 2021-10-26 13:45:14 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"61", "pet_id"=>"173"}
[1m[36mApplication Load (0.6ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 173], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.9ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 173], ["application_id", 61], ["created_at", "2021-10-26 19:45:27.236517"], ["updated_at", "2021-10-26 19:45:27.236517"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/61 Completed 302 Found in 12543ms (ActiveRecord: 2.2ms) Started GET “/applications/61” for 127.0.0.1 at 2021-10-26 13:45:27 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"61"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 61)[0m
Rendered applications/show.html.erb within layouts/application (3.1ms)
Completed 200 OK in 7ms (Views: 3.8ms | ActiveRecord: 1.6ms)
[1m[35m (0.5ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.0ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:45:49.392124"], ["updated_at", "2021-10-26 19:45:49.392124"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 62], ["created_at", "2021-10-26 19:45:49.423673"], ["updated_at", "2021-10-26 19:45:49.423673"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 62], ["created_at", "2021-10-26 19:45:49.426147"], ["updated_at", "2021-10-26 19:45:49.426147"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 62], ["created_at", "2021-10-26 19:45:49.427486"], ["updated_at", "2021-10-26 19:45:49.427486"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:45:49.441870"], ["updated_at", "2021-10-26 19:45:49.441870"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 174], ["application_id", 62], ["created_at", "2021-10-26 19:45:49.461383"], ["updated_at", "2021-10-26 19:45:49.461383"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 175], ["application_id", 62], ["created_at", "2021-10-26 19:45:49.464007"], ["updated_at", "2021-10-26 19:45:49.464007"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/62” for 127.0.0.1 at 2021-10-26 13:45:49 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"62"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 62], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 62], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (2.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 62)[0m
Rendered applications/show.html.erb within layouts/application (8.2ms)
Completed 200 OK in 94ms (Views: 85.4ms | ActiveRecord: 2.9ms) Started GET “/pets/174” for 127.0.0.1 at 2021-10-26 13:45:49 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"174"}
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 174], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 62], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.2ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.7ms) Started GET “/applications/62” for 127.0.0.1 at 2021-10-26 13:45:49 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"62"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 62], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 62], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 62)[0m
Rendered applications/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.1ms) Started GET “/pets/175” for 127.0.0.1 at 2021-10-26 13:45:49 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"175"}
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 175], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 62], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.5ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:45:49.637883"], ["updated_at", "2021-10-26 19:45:49.637883"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 63], ["created_at", "2021-10-26 19:45:49.639592"], ["updated_at", "2021-10-26 19:45:49.639592"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 63], ["created_at", "2021-10-26 19:45:49.641124"], ["updated_at", "2021-10-26 19:45:49.641124"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 63], ["created_at", "2021-10-26 19:45:49.642498"], ["updated_at", "2021-10-26 19:45:49.642498"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.9ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:45:49.643928"], ["updated_at", "2021-10-26 19:45:49.643928"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/63” for 127.0.0.1 at 2021-10-26 13:45:49 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"63"}
[1m[36mApplication Load (0.5ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]]
[1m[36mApplication Load (0.5ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 63)[0m
Rendered applications/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 4ms (Views: 1.1ms | ActiveRecord: 1.8ms) Started GET “/applications/63?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 13:45:49 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"63"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 63)[0m
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (2.9ms)
Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 2.0ms)
[1m[35m (0.5ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 19:45:49.674150"], ["updated_at", "2021-10-26 19:45:49.674150"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 64], ["created_at", "2021-10-26 19:45:49.676510"], ["updated_at", "2021-10-26 19:45:49.676510"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.9ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 19:45:49.678069"], ["updated_at", "2021-10-26 19:45:49.678069"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/64” for 127.0.0.1 at 2021-10-26 13:45:49 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"64"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 64], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 64], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 64)[0m
Rendered applications/show.html.erb within layouts/application (2.0ms)
Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 1.2ms) Started GET “/applications/64?utf8=%E2%9C%93&search=bella&commit=Search” for 127.0.0.1 at 2021-10-26 13:45:49 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"bella", "commit"=>"Search", "id"=>"64"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 64], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 64], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 64)[0m
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%bella%')[0m
Rendered applications/show.html.erb within layouts/application (3.1ms)
Completed 200 OK in 6ms (Views: 2.7ms | ActiveRecord: 1.9ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (2.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 20:45:30.992165"], ["updated_at", "2021-10-26 20:45:30.992165"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 65], ["created_at", "2021-10-26 20:45:31.025065"], ["updated_at", "2021-10-26 20:45:31.025065"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 65], ["created_at", "2021-10-26 20:45:31.027474"], ["updated_at", "2021-10-26 20:45:31.027474"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 65], ["created_at", "2021-10-26 20:45:31.028753"], ["updated_at", "2021-10-26 20:45:31.028753"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 20:45:31.044928"], ["updated_at", "2021-10-26 20:45:31.044928"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.5ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.8ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 181], ["application_id", 65], ["created_at", "2021-10-26 20:45:31.064107"], ["updated_at", "2021-10-26 20:45:31.064107"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.2ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 182], ["application_id", 65], ["created_at", "2021-10-26 20:45:31.067310"], ["updated_at", "2021-10-26 20:45:31.067310"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/65” for 127.0.0.1 at 2021-10-26 14:45:31 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"65"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 65)[0m
Rendered applications/show.html.erb within layouts/application (8.4ms)
Completed 200 OK in 105ms (Views: 97.1ms | ActiveRecord: 2.1ms) Started GET “/pets/181” for 127.0.0.1 at 2021-10-26 14:45:31 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"181"}
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 181], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.6ms) Started GET “/applications/65” for 127.0.0.1 at 2021-10-26 14:45:31 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"65"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 65)[0m
Rendered applications/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.1ms) Started GET “/pets/182” for 127.0.0.1 at 2021-10-26 14:45:31 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"182"}
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 182], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.6ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 20:45:31.263446"], ["updated_at", "2021-10-26 20:45:31.263446"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.9ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 66], ["created_at", "2021-10-26 20:45:31.264850"], ["updated_at", "2021-10-26 20:45:31.264850"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 66], ["created_at", "2021-10-26 20:45:31.266677"], ["updated_at", "2021-10-26 20:45:31.266677"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 66], ["created_at", "2021-10-26 20:45:31.268249"], ["updated_at", "2021-10-26 20:45:31.268249"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 20:45:31.269628"], ["updated_at", "2021-10-26 20:45:31.269628"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/66” for 127.0.0.1 at 2021-10-26 14:45:31 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"66"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 66], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 66], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 66)[0m
Rendered applications/show.html.erb within layouts/application (1.5ms)
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.3ms) Started GET “/applications/66?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 14:45:31 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"66"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 66], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 66], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 66)[0m
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (2.5ms)
Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 1.6ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 20:45:31.296596"], ["updated_at", "2021-10-26 20:45:31.296596"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 67], ["created_at", "2021-10-26 20:45:31.299140"], ["updated_at", "2021-10-26 20:45:31.299140"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.7ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 20:45:31.300848"], ["updated_at", "2021-10-26 20:45:31.300848"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/67” for 127.0.0.1 at 2021-10-26 14:45:31 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"67"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 67)[0m
Rendered applications/show.html.erb within layouts/application (1.6ms)
Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 1.3ms) Started GET “/applications/67?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 14:45:31 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"67"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 67)[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (2.3ms)
Completed 200 OK in 6ms (Views: 3.1ms | ActiveRecord: 1.2ms) Started POST “/application_pets?app_id=67&pet_id=187” for 127.0.0.1 at 2021-10-26 14:45:31 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"67", "pet_id"=>"187"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 187], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 187], ["application_id", 67], ["created_at", "2021-10-26 20:45:31.338468"], ["updated_at", "2021-10-26 20:45:31.338468"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/67 Completed 302 Found in 4ms (ActiveRecord: 1.1ms) Started GET “/applications/67” for 127.0.0.1 at 2021-10-26 14:45:31 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"67"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 67)[0m
Rendered applications/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.7ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.8ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.0ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 20:46:05.912183"], ["updated_at", "2021-10-26 20:46:05.912183"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 68], ["created_at", "2021-10-26 20:46:05.950992"], ["updated_at", "2021-10-26 20:46:05.950992"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 68], ["created_at", "2021-10-26 20:46:05.954253"], ["updated_at", "2021-10-26 20:46:05.954253"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 68], ["created_at", "2021-10-26 20:46:05.956217"], ["updated_at", "2021-10-26 20:46:05.956217"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (1.0ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 20:46:05.984433"], ["updated_at", "2021-10-26 20:46:05.984433"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.9ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 188], ["application_id", 68], ["created_at", "2021-10-26 20:46:06.004248"], ["updated_at", "2021-10-26 20:46:06.004248"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 189], ["application_id", 68], ["created_at", "2021-10-26 20:46:06.007419"], ["updated_at", "2021-10-26 20:46:06.007419"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/68” for 127.0.0.1 at 2021-10-26 14:46:06 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"68"}
[1m[36mApplication Load (0.5ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (2.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 68)[0m
Rendered applications/show.html.erb within layouts/application (9.2ms)
Completed 200 OK in 98ms (Views: 88.5ms | ActiveRecord: 3.3ms) Started GET “/pets/188” for 127.0.0.1 at 2021-10-26 14:46:06 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"188"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 188], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.5ms)
Completed 200 OK in 4ms (Views: 2.1ms | ActiveRecord: 0.6ms) Started GET “/applications/68” for 127.0.0.1 at 2021-10-26 14:46:06 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"68"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 68)[0m
Rendered applications/show.html.erb within layouts/application (1.8ms)
Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.8ms) Started GET “/pets/189” for 127.0.0.1 at 2021-10-26 14:46:06 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"189"}
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 189], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.8ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 20:46:06.176159"], ["updated_at", "2021-10-26 20:46:06.176159"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 69], ["created_at", "2021-10-26 20:46:06.177702"], ["updated_at", "2021-10-26 20:46:06.177702"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 69], ["created_at", "2021-10-26 20:46:06.178978"], ["updated_at", "2021-10-26 20:46:06.178978"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 69], ["created_at", "2021-10-26 20:46:06.180481"], ["updated_at", "2021-10-26 20:46:06.180481"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 20:46:06.181479"], ["updated_at", "2021-10-26 20:46:06.181479"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/69” for 127.0.0.1 at 2021-10-26 14:46:06 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"69"}
[1m[36mApplication Load (0.7ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mApplication Load (0.5ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)[0m
Rendered applications/show.html.erb within layouts/application (1.2ms)
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.8ms) Started GET “/applications/69?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 14:46:06 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"69"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)[0m
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (2.4ms)
Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 1.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-26 20:46:06.202635"], ["updated_at", "2021-10-26 20:46:06.202635"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 70], ["created_at", "2021-10-26 20:46:06.204260"], ["updated_at", "2021-10-26 20:46:06.204260"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-26 20:46:06.205173"], ["updated_at", "2021-10-26 20:46:06.205173"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/70” for 127.0.0.1 at 2021-10-26 14:46:06 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"70"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 70)[0m
Rendered applications/show.html.erb within layouts/application (1.2ms)
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.0ms) Started GET “/applications/70?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 14:46:06 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"70"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 70)[0m
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (2.2ms)
Completed 200 OK in 4ms (Views: 1.3ms | ActiveRecord: 1.6ms) Started POST “/application_pets?app_id=70&pet_id=194” for 127.0.0.1 at 2021-10-26 14:46:06 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"70", "pet_id"=>"194"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 194], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 194], ["application_id", 70], ["created_at", "2021-10-26 20:46:06.225055"], ["updated_at", "2021-10-26 20:46:06.225055"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/70 Completed 302 Found in 4ms (ActiveRecord: 1.5ms) Started GET “/applications/70” for 127.0.0.1 at 2021-10-26 14:46:06 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"70"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 70)[0m
Rendered applications/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.7ms)
[1m[35m (2.0ms)[0m [1m[31mROLLBACK[0m [1m[35m (2.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m [1m[35m (5.0ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.4ms)
Completed 200 OK in 99ms (Views: 94.9ms | ActiveRecord: 0.0ms) Started GET “/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (6.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (14.0ms)
Completed 200 OK in 23ms (Views: 8.7ms | ActiveRecord: 12.6ms)
[1m[35m (5.5ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.0ms)
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (7.8ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (8.9ms)
Completed 200 OK in 14ms (Views: 2.0ms | ActiveRecord: 11.0ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.0ms)
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.7ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (1.3ms)
Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 3.0ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.0ms)
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (1.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] Rendered veterinarians/index.html.erb within layouts/application (2.0ms)
Completed 200 OK in 7ms (Views: 1.9ms | ActiveRecord: 3.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (2.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 00:06:57.272919"], ["updated_at", "2021-10-27 00:06:57.272919"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (2.1ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 71], ["created_at", "2021-10-27 00:06:57.312445"], ["updated_at", "2021-10-27 00:06:57.312445"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 71], ["created_at", "2021-10-27 00:06:57.315761"], ["updated_at", "2021-10-27 00:06:57.315761"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 71], ["created_at", "2021-10-27 00:06:57.316951"], ["updated_at", "2021-10-27 00:06:57.316951"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 00:06:57.335954"], ["updated_at", "2021-10-27 00:06:57.335954"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.3ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 195], ["application_id", 71], ["created_at", "2021-10-27 00:06:57.354797"], ["updated_at", "2021-10-27 00:06:57.354797"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.9ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 196], ["application_id", 71], ["created_at", "2021-10-27 00:06:57.357171"], ["updated_at", "2021-10-27 00:06:57.357171"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/71” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"71"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 71)[0m
Rendered applications/show.html.erb within layouts/application (5.1ms)
Completed 200 OK in 9ms (Views: 4.9ms | ActiveRecord: 1.9ms) Started GET “/pets/195” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"195"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 195], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 4ms (Views: 1.6ms | ActiveRecord: 0.6ms) Started GET “/applications/71” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"71"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 71)[0m
Rendered applications/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.9ms) Started GET “/pets/196” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"196"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 196], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.3ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 00:06:57.390130"], ["updated_at", "2021-10-27 00:06:57.390130"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 72], ["created_at", "2021-10-27 00:06:57.391724"], ["updated_at", "2021-10-27 00:06:57.391724"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 72], ["created_at", "2021-10-27 00:06:57.392892"], ["updated_at", "2021-10-27 00:06:57.392892"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 72], ["created_at", "2021-10-27 00:06:57.394340"], ["updated_at", "2021-10-27 00:06:57.394340"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 00:06:57.395598"], ["updated_at", "2021-10-27 00:06:57.395598"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/72” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"72"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 72], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 72], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 72)[0m
Rendered applications/show.html.erb within layouts/application (1.2ms)
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.3ms) Started GET “/applications/72?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"72"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 72], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 72], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 72)[0m
[1m[36mPet Load (1.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (3.3ms)
Completed 200 OK in 5ms (Views: 1.8ms | ActiveRecord: 2.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 00:06:57.417771"], ["updated_at", "2021-10-27 00:06:57.417771"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 73], ["created_at", "2021-10-27 00:06:57.419342"], ["updated_at", "2021-10-27 00:06:57.419342"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 00:06:57.420507"], ["updated_at", "2021-10-27 00:06:57.420507"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/73” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"73"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 73)[0m
Rendered applications/show.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.7ms) Started GET “/applications/73?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"73"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 73)[0m
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (2.3ms)
Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 1.7ms) Started POST “/application_pets?app_id=73&pet_id=201” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"73", "pet_id"=>"201"}
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 201], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.8ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 201], ["application_id", 73], ["created_at", "2021-10-27 00:06:57.439897"], ["updated_at", "2021-10-27 00:06:57.439897"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/73 Completed 302 Found in 3ms (ActiveRecord: 1.3ms) Started GET “/applications/73” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"73"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 73)[0m
Rendered applications/show.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.8ms)
[1m[35m (1.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.0ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:57.458705"], ["updated_at", "2021-10-27 00:06:57.458705"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/74/pets/new” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"74"}
[1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 74], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (5.9ms)
Completed 200 OK in 10ms (Views: 7.3ms | ActiveRecord: 0.5ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:57.480117"], ["updated_at", "2021-10-27 00:06:57.480117"]]
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/75/pets/new” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"75"}
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 75], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started POST “/shelters/75/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"Bumblebee", "breed"=>"Welsh Corgi", "age"=>"1", "adoptable"=>"1", "commit"=>"Save ", "shelter_id"=>"75"}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.5ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 75], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "Welsh Corgi"], ["name", "Bumblebee"], ["shelter_id", 75], ["created_at", "2021-10-27 00:06:57.494396"], ["updated_at", "2021-10-27 00:06:57.494396"]]
[1m[35m (0.6ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Unpermitted parameters: :utf8, :commit Redirected to www.example.com/shelters/75/pets Completed 302 Found in 5ms (ActiveRecord: 2.2ms) Started GET “/shelters/75/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"75"}
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 75], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 75], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (2.7ms)
Completed 200 OK in 5ms (Views: 3.0ms | ActiveRecord: 0.8ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.7ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (3.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:57.509977"], ["updated_at", "2021-10-27 00:06:57.509977"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/76/pets/new” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"76"}
[1m[36mShelter Load (60.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 76], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.7ms)
Completed 200 OK in 62ms (Views: 1.4ms | ActiveRecord: 60.0ms) Started POST “/shelters/76/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "breed"=>"", "age"=>"", "adoptable"=>"0", "commit"=>"Save ", "shelter_id"=>"76"}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 76], ["LIMIT", 1]] [1m[35m (32.7ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Unpermitted parameters: :utf8, :commit Redirected to www.example.com/shelters/76/pets/new Completed 302 Found in 37ms (ActiveRecord: 33.1ms) Started GET “/shelters/76/pets/new” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"76"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 76], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:57.628645"], ["updated_at", "2021-10-27 00:06:57.628645"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 77], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 77], ["created_at", "2021-10-27 00:06:57.630738"], ["updated_at", "2021-10-27 00:06:57.630738"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 77], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 77], ["created_at", "2021-10-27 00:06:57.632659"], ["updated_at", "2021-10-27 00:06:57.632659"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 77], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 77], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (7.4ms)
Completed 200 OK in 9ms (Views: 7.7ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:57.653734"], ["updated_at", "2021-10-27 00:06:57.653734"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 78], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 78], ["created_at", "2021-10-27 00:06:57.655639"], ["updated_at", "2021-10-27 00:06:57.655639"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 78], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 78], ["created_at", "2021-10-27 00:06:57.656976"], ["updated_at", "2021-10-27 00:06:57.656976"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 78], ["LIMIT", 1]]
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 78], ["created_at", "2021-10-27 00:06:57.658318"], ["updated_at", "2021-10-27 00:06:57.658318"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 78], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 78], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:57.664549"], ["updated_at", "2021-10-27 00:06:57.664549"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 79], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 79], ["created_at", "2021-10-27 00:06:57.666165"], ["updated_at", "2021-10-27 00:06:57.666165"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 79], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 79], ["created_at", "2021-10-27 00:06:57.668504"], ["updated_at", "2021-10-27 00:06:57.668504"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 79], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 79], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.5ms)
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.3ms) Started GET “/pets/208/edit” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"208"}
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 208], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (1.2ms)
Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:57.684859"], ["updated_at", "2021-10-27 00:06:57.684859"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 80], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 80], ["created_at", "2021-10-27 00:06:57.686839"], ["updated_at", "2021-10-27 00:06:57.686839"]]
[1m[35m (0.5ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 80], ["LIMIT", 1]]
[1m[36mPet Create (1.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 80], ["created_at", "2021-10-27 00:06:57.689257"], ["updated_at", "2021-10-27 00:06:57.689257"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (1.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 80], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 80], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (4.7ms)
Completed 200 OK in 7ms (Views: 3.4ms | ActiveRecord: 2.2ms) Started DELETE “/pets/210” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"210"}
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 210], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (27.3ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 210]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 31ms (ActiveRecord: 28.3ms) Started GET “/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 80], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (2.1ms)
Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.8ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.2ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:57.769135"], ["updated_at", "2021-10-27 00:06:57.769135"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 81], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 81], ["created_at", "2021-10-27 00:06:57.771213"], ["updated_at", "2021-10-27 00:06:57.771213"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 81], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 81], ["created_at", "2021-10-27 00:06:57.773211"], ["updated_at", "2021-10-27 00:06:57.773211"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 81], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 81], ["created_at", "2021-10-27 00:06:57.775229"], ["updated_at", "2021-10-27 00:06:57.775229"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 81], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 81], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 81], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.9ms)
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.3ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
[1m[36mPet Load (44.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 81], ["LIMIT", 1]]
[1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 81], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (46.2ms)
Completed 200 OK in 47ms (Views: 2.4ms | ActiveRecord: 44.6ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.2ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationsController#new as HTML
Rendering applications/new.html.erb within layouts/application Rendered applications/new.html.erb within layouts/application (2.6ms)
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms) Started POST “/applications” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationsController#create as HTML
Parameters: {"utf8"=>"✓", "applicant_name"=>"Jacob Yarborough", "street_address"=>"789 South Street", "city"=>"Denver", "state"=>"CO", "zipcode"=>"80222", "why"=>"I love dogs", "commit"=>"Submit Application"}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.6ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (4.8ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "789 South Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80222"], ["why", "I love dogs"], ["created_at", "2021-10-27 00:06:57.870220"], ["updated_at", "2021-10-27 00:06:57.870220"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Update (1.2ms)[0m [1m[33mUPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3[0m [["application_status", "In Progress"], ["updated_at", "2021-10-27 00:06:57.876918"], ["id", 74]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/74 Completed 302 Found in 34ms (ActiveRecord: 7.0ms) Started GET “/applications/74” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"74"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 74], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 74], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 74)[0m
Rendered applications/show.html.erb within layouts/application (2.1ms)
Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 1.2ms)
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" ORDER BY "applications"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Mystery Building"], ["city", "Irvine CA"], ["rank", 9], ["created_at", "2021-10-27 00:06:57.924069"], ["updated_at", "2021-10-27 00:06:57.924069"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 82], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 2], ["breed", "Great Dane"], ["name", "Scooby"], ["shelter_id", 82], ["created_at", "2021-10-27 00:06:57.927992"], ["updated_at", "2021-10-27 00:06:57.927992"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/215” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"215"}
[1m[36mPet Load (1.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 215], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.6ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 82], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (4.7ms)
Completed 200 OK in 12ms (Views: 8.2ms | ActiveRecord: 2.0ms)
[1m[35m (1.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Mystery Building"], ["city", "Irvine CA"], ["rank", 9], ["created_at", "2021-10-27 00:06:57.960581"], ["updated_at", "2021-10-27 00:06:57.960581"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 83], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "Great Dane"], ["name", "Scrappy"], ["shelter_id", 83], ["created_at", "2021-10-27 00:06:57.963940"], ["updated_at", "2021-10-27 00:06:57.963940"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/216” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"216"}
[1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 216], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 83], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.6ms)
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.2ms) Started DELETE “/pets/216” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"216"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 216], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (0.5ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 216]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 0.9ms) Started GET “/pets” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
[1m[35m (1.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Hollywood shelter"], ["city", "Irvine, CA"], ["rank", 7], ["created_at", "2021-10-27 00:06:57.990148"], ["updated_at", "2021-10-27 00:06:57.990148"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 84], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "George Hairlesson"], ["shelter_id", 84], ["created_at", "2021-10-27 00:06:57.992731"], ["updated_at", "2021-10-27 00:06:57.992731"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/217/edit” for 127.0.0.1 at 2021-10-26 18:06:57 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"217"}
[1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 217], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.9ms)
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.1ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Heavenly pets"], ["city", "Aurora, CO"], ["rank", 7], ["created_at", "2021-10-27 00:06:58.004177"], ["updated_at", "2021-10-27 00:06:58.004177"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 85], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "GSD"], ["name", "Charlie"], ["shelter_id", 85], ["created_at", "2021-10-27 00:06:58.006104"], ["updated_at", "2021-10-27 00:06:58.006104"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/218/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"218"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 218], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (1.2ms)
Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.3ms) Started PATCH “/pets/218” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by PetsController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"Itchy", "breed"=>"", "adoptable"=>"0", "age"=>"1", "commit"=>"Save ", "id"=>"218"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 218], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 85], ["LIMIT", 1]] [1m[36mPet Update (0.5ms)[0m [1m[33mUPDATE "pets" SET "name" = $1, "age" = $2, "breed" = $3, "adoptable" = $4, "updated_at" = $5 WHERE "pets"."id" = $6[0m [["name", "Itchy"], ["age", 1], ["breed", ""], ["adoptable", false], ["updated_at", "2021-10-27 00:06:58.031656"], ["id", 218]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets/218 Completed 302 Found in 4ms (ActiveRecord: 1.2ms) Started GET “/pets/218” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"218"}
[1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 218], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 85], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Heavenly pets"], ["city", "Aurora, CO"], ["rank", 7], ["created_at", "2021-10-27 00:06:58.038838"], ["updated_at", "2021-10-27 00:06:58.038838"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 86], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "Whippet"], ["name", "Annabelle"], ["shelter_id", 86], ["created_at", "2021-10-27 00:06:58.040687"], ["updated_at", "2021-10-27 00:06:58.040687"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/219/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"219"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 219], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.2ms) Started PATCH “/pets/219” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by PetsController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "breed"=>"", "adoptable"=>"0", "age"=>"", "commit"=>"Save ", "id"=>"219"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 219], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 86], ["LIMIT", 1]] [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets/219/edit Completed 302 Found in 3ms (ActiveRecord: 0.5ms) Started GET “/pets/219/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"219"}
[1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 219], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.1ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.3ms)[0m [1m[35mBEGIN[0m
Started GET “/shelters/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#new as HTML
Rendering shelters/new.html.erb within layouts/application Rendered shelters/new.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/shelters/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#new as HTML
Rendering shelters/new.html.erb within layouts/application Rendered shelters/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms) Started POST “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"Houston Shelter", "city"=>"Houston", "foster_program"=>"1", "rank"=>"7", "commit"=>"Save "}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Houston Shelter"], ["city", "Houston"], ["rank", 7], ["created_at", "2021-10-27 00:06:58.076220"], ["updated_at", "2021-10-27 00:06:58.076220"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters Completed 302 Found in 3ms (ActiveRecord: 1.1ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/shelters/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#new as HTML
Rendering shelters/new.html.erb within layouts/application Rendered shelters/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms) Started POST “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "city"=>"", "foster_program"=>"0", "rank"=>"", "commit"=>"Save "}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[35m (0.8ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters/new Completed 302 Found in 4ms (ActiveRecord: 0.9ms) Started GET “/shelters/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#new as HTML
Rendering shelters/new.html.erb within layouts/application Rendered shelters/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.100315"], ["updated_at", "2021-10-27 00:06:58.100315"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:58.101616"], ["updated_at", "2021-10-27 00:06:58.101616"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:58.102642"], ["updated_at", "2021-10-27 00:06:58.102642"]]
[1m[35m (0.4ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 88], ["created_at", "2021-10-27 00:06:58.105352"], ["updated_at", "2021-10-27 00:06:58.105352"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (2.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 88], ["created_at", "2021-10-27 00:06:58.106993"], ["updated_at", "2021-10-27 00:06:58.106993"]]
[1m[35m (0.5ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 90], ["created_at", "2021-10-27 00:06:58.111224"], ["updated_at", "2021-10-27 00:06:58.111224"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (2.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (2.8ms)
Completed 200 OK in 4ms (Views: 1.4ms | ActiveRecord: 2.0ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.0ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.121315"], ["updated_at", "2021-10-27 00:06:58.121315"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:58.123084"], ["updated_at", "2021-10-27 00:06:58.123084"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:58.124671"], ["updated_at", "2021-10-27 00:06:58.124671"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 91], ["created_at", "2021-10-27 00:06:58.126262"], ["updated_at", "2021-10-27 00:06:58.126262"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 91], ["created_at", "2021-10-27 00:06:58.127465"], ["updated_at", "2021-10-27 00:06:58.127465"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 93], ["created_at", "2021-10-27 00:06:58.128574"], ["updated_at", "2021-10-27 00:06:58.128574"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.137623"], ["updated_at", "2021-10-27 00:06:58.137623"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:58.138689"], ["updated_at", "2021-10-27 00:06:58.138689"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:58.139533"], ["updated_at", "2021-10-27 00:06:58.139533"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 94], ["created_at", "2021-10-27 00:06:58.140703"], ["updated_at", "2021-10-27 00:06:58.140703"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 94], ["created_at", "2021-10-27 00:06:58.141841"], ["updated_at", "2021-10-27 00:06:58.141841"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 96], ["created_at", "2021-10-27 00:06:58.143011"], ["updated_at", "2021-10-27 00:06:58.143011"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms) Started GET “/shelters?sort=pet_count” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML
Parameters: {"sort"=>"pet_count"}
Rendering shelters/index.html.erb within layouts/application
[1m[36mShelter Load (1.8ms)[0m [1m[34mSELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC[0m
Rendered shelters/index.html.erb within layouts/application (2.6ms)
Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 1.8ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.154252"], ["updated_at", "2021-10-27 00:06:58.154252"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:58.155267"], ["updated_at", "2021-10-27 00:06:58.155267"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:58.156137"], ["updated_at", "2021-10-27 00:06:58.156137"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 97], ["created_at", "2021-10-27 00:06:58.157573"], ["updated_at", "2021-10-27 00:06:58.157573"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 97], ["created_at", "2021-10-27 00:06:58.158710"], ["updated_at", "2021-10-27 00:06:58.158710"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 99], ["created_at", "2021-10-27 00:06:58.160094"], ["updated_at", "2021-10-27 00:06:58.160094"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms) Started GET “/shelters/97/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#edit as HTML
Parameters: {"id"=>"97"}
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 97], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.9ms)
Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.172177"], ["updated_at", "2021-10-27 00:06:58.172177"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:58.173467"], ["updated_at", "2021-10-27 00:06:58.173467"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:58.174446"], ["updated_at", "2021-10-27 00:06:58.174446"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 100], ["created_at", "2021-10-27 00:06:58.176044"], ["updated_at", "2021-10-27 00:06:58.176044"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 100], ["created_at", "2021-10-27 00:06:58.177449"], ["updated_at", "2021-10-27 00:06:58.177449"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 102], ["created_at", "2021-10-27 00:06:58.178571"], ["updated_at", "2021-10-27 00:06:58.178571"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms) Started DELETE “/shelters/100” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#destroy as HTML
Parameters: {"id"=>"100"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 100], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 100]]
[1m[36mPet Destroy (0.7ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 232]]
[1m[36mPet Destroy (0.6ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 233]]
[1m[36mShelter Destroy (0.6ms)[0m [1m[31mDELETE FROM "shelters" WHERE "shelters"."id" = $1[0m [["id", 100]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters Completed 302 Found in 4ms (ActiveRecord: 2.6ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.5ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.196761"], ["updated_at", "2021-10-27 00:06:58.196761"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:58.197903"], ["updated_at", "2021-10-27 00:06:58.197903"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:58.198822"], ["updated_at", "2021-10-27 00:06:58.198822"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 103], ["created_at", "2021-10-27 00:06:58.200039"], ["updated_at", "2021-10-27 00:06:58.200039"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 103], ["created_at", "2021-10-27 00:06:58.201202"], ["updated_at", "2021-10-27 00:06:58.201202"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 105], ["created_at", "2021-10-27 00:06:58.202503"], ["updated_at", "2021-10-27 00:06:58.202503"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.211522"], ["updated_at", "2021-10-27 00:06:58.211522"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:58.212574"], ["updated_at", "2021-10-27 00:06:58.212574"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:58.213372"], ["updated_at", "2021-10-27 00:06:58.213372"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 106], ["created_at", "2021-10-27 00:06:58.214459"], ["updated_at", "2021-10-27 00:06:58.214459"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 106], ["created_at", "2021-10-27 00:06:58.215555"], ["updated_at", "2021-10-27 00:06:58.215555"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 108], ["created_at", "2021-10-27 00:06:58.216719"], ["updated_at", "2021-10-27 00:06:58.216719"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started GET “/shelters?utf8=%E2%9C%93&search=RGV&commit=Search” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"RGV", "commit"=>"Search"}
Rendering shelters/index.html.erb within layouts/application
[1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%RGV%')[0m
Rendered shelters/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.227588"], ["updated_at", "2021-10-27 00:06:58.227588"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.228661"], ["updated_at", "2021-10-27 00:06:58.228661"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 109], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 109], ["created_at", "2021-10-27 00:06:58.230080"], ["updated_at", "2021-10-27 00:06:58.230080"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 109], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 109], ["created_at", "2021-10-27 00:06:58.231383"], ["updated_at", "2021-10-27 00:06:58.231383"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 110], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 110], ["created_at", "2021-10-27 00:06:58.232759"], ["updated_at", "2021-10-27 00:06:58.232759"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 109], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 109], ["created_at", "2021-10-27 00:06:58.233967"], ["updated_at", "2021-10-27 00:06:58.233967"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/109/pets” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"109"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 109], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 109], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.6ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.249655"], ["updated_at", "2021-10-27 00:06:58.249655"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.250940"], ["updated_at", "2021-10-27 00:06:58.250940"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 111], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 111], ["created_at", "2021-10-27 00:06:58.252529"], ["updated_at", "2021-10-27 00:06:58.252529"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 111], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 111], ["created_at", "2021-10-27 00:06:58.254114"], ["updated_at", "2021-10-27 00:06:58.254114"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 112], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 112], ["created_at", "2021-10-27 00:06:58.255813"], ["updated_at", "2021-10-27 00:06:58.255813"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 111], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 111], ["created_at", "2021-10-27 00:06:58.257755"], ["updated_at", "2021-10-27 00:06:58.257755"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/111/pets” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"111"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 111], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 111], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms) Started GET “/shelters/111/pets/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"111"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 111], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.267643"], ["updated_at", "2021-10-27 00:06:58.267643"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.268891"], ["updated_at", "2021-10-27 00:06:58.268891"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 113], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 113], ["created_at", "2021-10-27 00:06:58.270685"], ["updated_at", "2021-10-27 00:06:58.270685"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 113], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 113], ["created_at", "2021-10-27 00:06:58.272284"], ["updated_at", "2021-10-27 00:06:58.272284"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 114], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 114], ["created_at", "2021-10-27 00:06:58.273881"], ["updated_at", "2021-10-27 00:06:58.273881"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 113], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 113], ["created_at", "2021-10-27 00:06:58.275727"], ["updated_at", "2021-10-27 00:06:58.275727"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/113/pets” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"113"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 113], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 113], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms) Started GET “/pets/249/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"249"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 249], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.285246"], ["updated_at", "2021-10-27 00:06:58.285246"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.286505"], ["updated_at", "2021-10-27 00:06:58.286505"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 115], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 115], ["created_at", "2021-10-27 00:06:58.288312"], ["updated_at", "2021-10-27 00:06:58.288312"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 115], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 115], ["created_at", "2021-10-27 00:06:58.290152"], ["updated_at", "2021-10-27 00:06:58.290152"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 116], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 116], ["created_at", "2021-10-27 00:06:58.291680"], ["updated_at", "2021-10-27 00:06:58.291680"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 115], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 115], ["created_at", "2021-10-27 00:06:58.293389"], ["updated_at", "2021-10-27 00:06:58.293389"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/115/pets” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"115"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 115], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 115], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms) Started DELETE “/pets/253” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"253"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 253], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (0.8ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 253]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 2ms (ActiveRecord: 1.2ms) Started GET “/pets” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 115], ["LIMIT", 1]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 116], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 115], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.7ms)
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.306887"], ["updated_at", "2021-10-27 00:06:58.306887"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.308243"], ["updated_at", "2021-10-27 00:06:58.308243"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 117], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 117], ["created_at", "2021-10-27 00:06:58.310100"], ["updated_at", "2021-10-27 00:06:58.310100"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 117], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 117], ["created_at", "2021-10-27 00:06:58.311352"], ["updated_at", "2021-10-27 00:06:58.311352"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 118], ["LIMIT", 1]]
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 118], ["created_at", "2021-10-27 00:06:58.312528"], ["updated_at", "2021-10-27 00:06:58.312528"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 117], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 117], ["created_at", "2021-10-27 00:06:58.313763"], ["updated_at", "2021-10-27 00:06:58.313763"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/117/pets” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"117"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 117], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 117], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.320981"], ["updated_at", "2021-10-27 00:06:58.320981"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.322111"], ["updated_at", "2021-10-27 00:06:58.322111"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 119], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 119], ["created_at", "2021-10-27 00:06:58.323854"], ["updated_at", "2021-10-27 00:06:58.323854"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 119], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 119], ["created_at", "2021-10-27 00:06:58.325886"], ["updated_at", "2021-10-27 00:06:58.325886"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 120], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 120], ["created_at", "2021-10-27 00:06:58.327248"], ["updated_at", "2021-10-27 00:06:58.327248"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 119], ["LIMIT", 1]]
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 119], ["created_at", "2021-10-27 00:06:58.328455"], ["updated_at", "2021-10-27 00:06:58.328455"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/119/pets” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"119"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 119], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 119], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms) Started GET “/shelters/119/pets?utf8=%E2%9C%93&age=3&commit=Filter” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#pets as HTML
Parameters: {"utf8"=>"✓", "age"=>"3", "commit"=>"Filter", "shelter_id"=>"119"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 119], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= '3')[0m [["shelter_id", 119], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.5ms)
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.0ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.342483"], ["updated_at", "2021-10-27 00:06:58.342483"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.343696"], ["updated_at", "2021-10-27 00:06:58.343696"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 121], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 121], ["created_at", "2021-10-27 00:06:58.344990"], ["updated_at", "2021-10-27 00:06:58.344990"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 121], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 121], ["created_at", "2021-10-27 00:06:58.346403"], ["updated_at", "2021-10-27 00:06:58.346403"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 122], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 122], ["created_at", "2021-10-27 00:06:58.347998"], ["updated_at", "2021-10-27 00:06:58.347998"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 121], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 121], ["created_at", "2021-10-27 00:06:58.349810"], ["updated_at", "2021-10-27 00:06:58.349810"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/121/pets” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"121"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 121], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 121], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms) Started GET “/shelters/121/pets?sort=alphabetical” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#pets as HTML
Parameters: {"sort"=>"alphabetical", "shelter_id"=>"121"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 121], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (1.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC[0m [["shelter_id", 121], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (2.4ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 1.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.365353"], ["updated_at", "2021-10-27 00:06:58.365353"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/123” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#show as HTML
Parameters: {"id"=>"123"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 123], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
[1m[35m (0.6ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 123]]
Rendered shelters/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.8ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.373105"], ["updated_at", "2021-10-27 00:06:58.373105"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "shorthair"], ["name", "garfield"], ["shelter_id", 124], ["created_at", "2021-10-27 00:06:58.375012"], ["updated_at", "2021-10-27 00:06:58.375012"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/124” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#show as HTML
Parameters: {"id"=>"124"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 124], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 124]]
Rendered shelters/show.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.4ms)
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 124]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.380704"], ["updated_at", "2021-10-27 00:06:58.380704"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/125” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#show as HTML
Parameters: {"id"=>"125"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 125], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 125]]
Rendered shelters/show.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.4ms) Started DELETE “/shelters/125” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#destroy as HTML
Parameters: {"id"=>"125"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 125], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 125]]
[1m[36mShelter Destroy (0.4ms)[0m [1m[31mDELETE FROM "shelters" WHERE "shelters"."id" = $1[0m [["id", 125]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 1.0ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (0.8ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.391508"], ["updated_at", "2021-10-27 00:06:58.391508"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/126” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#show as HTML
Parameters: {"id"=>"126"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 126], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 126]]
Rendered shelters/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.6ms) Started GET “/shelters/126/pets” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"126"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 126], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 126], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.399673"], ["updated_at", "2021-10-27 00:06:58.399673"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/127/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#edit as HTML
Parameters: {"id"=>"127"}
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 127], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.405555"], ["updated_at", "2021-10-27 00:06:58.405555"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/128/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#edit as HTML
Parameters: {"id"=>"128"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 128], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms) Started PATCH “/shelters/128” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"Wichita Shelter", "city"=>"Wichita", "foster_program"=>"0", "rank"=>"10", "commit"=>"Save ", "id"=>"128"}
Unpermitted parameters: :utf8, :_method, :commit
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 128], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mShelter Update (0.4ms)[0m [1m[33mUPDATE "shelters" SET "name" = $1, "city" = $2, "rank" = $3, "updated_at" = $4 WHERE "shelters"."id" = $5[0m [["name", "Wichita Shelter"], ["city", "Wichita"], ["rank", 10], ["updated_at", "2021-10-27 00:06:58.414928"], ["id", 128]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 0.8ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.421480"], ["updated_at", "2021-10-27 00:06:58.421480"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/129/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#edit as HTML
Parameters: {"id"=>"129"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 129], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms) Started PATCH “/shelters/129” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "city"=>"Wichita", "foster_program"=>"0", "rank"=>"", "commit"=>"Save ", "id"=>"129"}
Unpermitted parameters: :utf8, :_method, :commit
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 129], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters/129/edit Completed 302 Found in 2ms (ActiveRecord: 0.3ms) Started GET “/shelters/129/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by SheltersController#edit as HTML
Parameters: {"id"=>"129"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 129], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (1.1ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.447624"], ["updated_at", "2021-10-27 00:06:58.447624"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/1/veterinarians/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"1"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 1], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.8ms)
Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.457084"], ["updated_at", "2021-10-27 00:06:58.457084"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/2/veterinarians/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"2"}
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.3ms) Started POST “/veterinary_offices/2/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"Dr. Burstyn", "review_rating"=>"10", "on_call"=>"1", "commit"=>"Save ", "veterinary_office_id"=>"2"}
Unpermitted parameters: :utf8, :commit
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
[1m[36mVeterinarian Create (1.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Dr. Burstyn"], ["veterinary_office_id", 2], ["created_at", "2021-10-27 00:06:58.478034"], ["updated_at", "2021-10-27 00:06:58.478034"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices/2/veterinarians Completed 302 Found in 15ms (ActiveRecord: 8.8ms) Started GET “/veterinary_offices/2/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"2"}
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (5.1ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 2], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (6.5ms)
Completed 200 OK in 9ms (Views: 1.9ms | ActiveRecord: 5.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.492775"], ["updated_at", "2021-10-27 00:06:58.492775"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/3/veterinarians/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"3"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 3], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started POST “/veterinary_offices/3/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "review_rating"=>"", "on_call"=>"0", "commit"=>"Save ", "veterinary_office_id"=>"3"}
Unpermitted parameters: :utf8, :commit
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 3], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 3], ["LIMIT", 1]] [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices/3/veterinarians/new Completed 302 Found in 3ms (ActiveRecord: 0.5ms) Started GET “/veterinary_offices/3/veterinarians/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"3"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 3], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.507778"], ["updated_at", "2021-10-27 00:06:58.507778"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 4], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 4], ["created_at", "2021-10-27 00:06:58.509521"], ["updated_at", "2021-10-27 00:06:58.509521"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 4], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 4], ["created_at", "2021-10-27 00:06:58.510810"], ["updated_at", "2021-10-27 00:06:58.510810"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 4], ["LIMIT", 1]] [1m[36mCACHE VeterinaryOffice Load (0.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 4], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.518829"], ["updated_at", "2021-10-27 00:06:58.518829"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 5], ["created_at", "2021-10-27 00:06:58.520858"], ["updated_at", "2021-10-27 00:06:58.520858"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 5], ["created_at", "2021-10-27 00:06:58.522389"], ["updated_at", "2021-10-27 00:06:58.522389"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.529836"], ["updated_at", "2021-10-27 00:06:58.529836"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 6], ["created_at", "2021-10-27 00:06:58.531342"], ["updated_at", "2021-10-27 00:06:58.531342"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 6], ["created_at", "2021-10-27 00:06:58.532941"], ["updated_at", "2021-10-27 00:06:58.532941"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]] [1m[36mCACHE VeterinaryOffice Load (0.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms) Started GET “/veterinarians/6/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"6"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.8ms)
Completed 200 OK in 5ms (Views: 1.3ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.545240"], ["updated_at", "2021-10-27 00:06:58.545240"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 7], ["created_at", "2021-10-27 00:06:58.546605"], ["updated_at", "2021-10-27 00:06:58.546605"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 7], ["created_at", "2021-10-27 00:06:58.548022"], ["updated_at", "2021-10-27 00:06:58.548022"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]] [1m[36mCACHE VeterinaryOffice Load (0.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms) Started DELETE “/veterinarians/8” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#destroy as HTML
Parameters: {"id"=>"8"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Destroy (0.2ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 8]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.5ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.558339"], ["updated_at", "2021-10-27 00:06:58.558339"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 8], ["created_at", "2021-10-27 00:06:58.559872"], ["updated_at", "2021-10-27 00:06:58.559872"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/10” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#show as HTML
Parameters: {"id"=>"10"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 10], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.566742"], ["updated_at", "2021-10-27 00:06:58.566742"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 9], ["created_at", "2021-10-27 00:06:58.568709"], ["updated_at", "2021-10-27 00:06:58.568709"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/11” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#show as HTML
Parameters: {"id"=>"11"}
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.5ms) Started DELETE “/veterinarians/11” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#destroy as HTML
Parameters: {"id"=>"11"}
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Destroy (0.4ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 11]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.9ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] Rendered veterinarians/index.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 00:06:58.579222"], ["updated_at", "2021-10-27 00:06:58.579222"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 10], ["created_at", "2021-10-27 00:06:58.580671"], ["updated_at", "2021-10-27 00:06:58.580671"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/12/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"12"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 00:06:58.586280"], ["updated_at", "2021-10-27 00:06:58.586280"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 11], ["created_at", "2021-10-27 00:06:58.587967"], ["updated_at", "2021-10-27 00:06:58.587967"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/13/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"13"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/veterinarians/13” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"Ignacio", "on_call"=>"0", "review_rating"=>"10", "commit"=>"Save ", "id"=>"13"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]] [1m[36mVeterinarian Update (0.4ms)[0m [1m[33mUPDATE "veterinarians" SET "name" = $1, "on_call" = $2, "review_rating" = $3, "updated_at" = $4 WHERE "veterinarians"."id" = $5[0m [["name", "Ignacio"], ["on_call", false], ["review_rating", 10], ["updated_at", "2021-10-27 00:06:58.597027"], ["id", 13]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians/13 Completed 302 Found in 2ms (ActiveRecord: 0.8ms) Started GET “/veterinarians/13” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#show as HTML
Parameters: {"id"=>"13"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 00:06:58.602468"], ["updated_at", "2021-10-27 00:06:58.602468"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 12], ["created_at", "2021-10-27 00:06:58.604030"], ["updated_at", "2021-10-27 00:06:58.604030"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/14/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"14"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 14], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/veterinarians/14” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "on_call"=>"0", "review_rating"=>"", "commit"=>"Save ", "id"=>"14"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 14], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]] [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians/14/edit Completed 302 Found in 3ms (ActiveRecord: 0.6ms) Started GET “/veterinarians/14/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"14"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 14], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#new as HTML
Rendering veterinary_offices/new.html.erb within layouts/application Rendered veterinary_offices/new.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#new as HTML
Rendering veterinary_offices/new.html.erb within layouts/application Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/veterinary_offices” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"Houston Vet Office", "boarding_services"=>"0", "max_patient_capacity"=>"75", "commit"=>"Save "}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.6ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", false], ["max_patient_capacity", 75], ["name", "Houston Vet Office"], ["created_at", "2021-10-27 00:06:58.630408"], ["updated_at", "2021-10-27 00:06:58.630408"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 0.8ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#new as HTML
Rendering veterinary_offices/new.html.erb within layouts/application Rendered veterinary_offices/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/veterinary_offices” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "boarding_services"=>"0", "max_patient_capacity"=>"", "commit"=>"Save "}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices/new Completed 302 Found in 2ms (ActiveRecord: 0.2ms) Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#new as HTML
Rendering veterinary_offices/new.html.erb within layouts/application Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 00:06:58.647878"], ["updated_at", "2021-10-27 00:06:58.647878"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 00:06:58.648903"], ["updated_at", "2021-10-27 00:06:58.648903"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 00:06:58.649674"], ["updated_at", "2021-10-27 00:06:58.649674"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 14], ["created_at", "2021-10-27 00:06:58.651011"], ["updated_at", "2021-10-27 00:06:58.651011"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 14], ["created_at", "2021-10-27 00:06:58.652241"], ["updated_at", "2021-10-27 00:06:58.652241"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 16], ["created_at", "2021-10-27 00:06:58.653266"], ["updated_at", "2021-10-27 00:06:58.653266"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 00:06:58.660915"], ["updated_at", "2021-10-27 00:06:58.660915"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 00:06:58.662139"], ["updated_at", "2021-10-27 00:06:58.662139"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 00:06:58.663191"], ["updated_at", "2021-10-27 00:06:58.663191"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 17], ["created_at", "2021-10-27 00:06:58.664487"], ["updated_at", "2021-10-27 00:06:58.664487"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 17], ["created_at", "2021-10-27 00:06:58.665777"], ["updated_at", "2021-10-27 00:06:58.665777"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 19], ["created_at", "2021-10-27 00:06:58.667052"], ["updated_at", "2021-10-27 00:06:58.667052"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 00:06:58.677337"], ["updated_at", "2021-10-27 00:06:58.677337"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 00:06:58.678559"], ["updated_at", "2021-10-27 00:06:58.678559"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 00:06:58.679532"], ["updated_at", "2021-10-27 00:06:58.679532"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 20], ["created_at", "2021-10-27 00:06:58.680842"], ["updated_at", "2021-10-27 00:06:58.680842"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 20], ["created_at", "2021-10-27 00:06:58.682182"], ["updated_at", "2021-10-27 00:06:58.682182"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 22], ["created_at", "2021-10-27 00:06:58.683573"], ["updated_at", "2021-10-27 00:06:58.683573"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices?sort=veterinarian_count” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#index as HTML
Parameters: {"sort"=>"veterinarian_count"}
Rendering veterinary_offices/index.html.erb within layouts/application
[1m[36mVeterinaryOffice Load (0.7ms)[0m [1m[34mSELECT veterinary_offices.*, count(veterinarians.id) AS vets_count FROM "veterinary_offices" LEFT OUTER JOIN veterinarians ON veterinarians.veterinary_office_id = veterinary_offices.id GROUP BY veterinary_offices.id ORDER BY vets_count DESC[0m
Rendered veterinary_offices/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.7ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 00:06:58.694149"], ["updated_at", "2021-10-27 00:06:58.694149"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 00:06:58.695378"], ["updated_at", "2021-10-27 00:06:58.695378"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 00:06:58.696367"], ["updated_at", "2021-10-27 00:06:58.696367"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 23], ["created_at", "2021-10-27 00:06:58.697715"], ["updated_at", "2021-10-27 00:06:58.697715"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 23], ["created_at", "2021-10-27 00:06:58.698971"], ["updated_at", "2021-10-27 00:06:58.698971"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 25], ["created_at", "2021-10-27 00:06:58.700229"], ["updated_at", "2021-10-27 00:06:58.700229"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/23/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"23"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 23], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.8ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 00:06:58.711774"], ["updated_at", "2021-10-27 00:06:58.711774"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 00:06:58.712800"], ["updated_at", "2021-10-27 00:06:58.712800"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 00:06:58.713768"], ["updated_at", "2021-10-27 00:06:58.713768"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 26], ["created_at", "2021-10-27 00:06:58.715126"], ["updated_at", "2021-10-27 00:06:58.715126"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 26], ["created_at", "2021-10-27 00:06:58.716116"], ["updated_at", "2021-10-27 00:06:58.716116"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 28], ["created_at", "2021-10-27 00:06:58.717123"], ["updated_at", "2021-10-27 00:06:58.717123"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.3ms) Started DELETE “/veterinary_offices/26” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#destroy as HTML
Parameters: {"id"=>"26"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 26], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 26]]
[1m[36mVeterinarian Destroy (0.3ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 27]]
[1m[36mVeterinarian Destroy (0.3ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 28]]
[1m[36mVeterinaryOffice Destroy (0.6ms)[0m [1m[31mDELETE FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1[0m [["id", 26]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices Completed 302 Found in 4ms (ActiveRecord: 1.9ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 00:06:58.731958"], ["updated_at", "2021-10-27 00:06:58.731958"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/29” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#show as HTML
Parameters: {"id"=>"29"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 29], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 29]]
Rendered veterinary_offices/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 00:06:58.738821"], ["updated_at", "2021-10-27 00:06:58.738821"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/30” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#show as HTML
Parameters: {"id"=>"30"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 30], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 30]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 30]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 90], ["name", "Aurora vet"], ["created_at", "2021-10-27 00:06:58.744521"], ["updated_at", "2021-10-27 00:06:58.744521"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/31” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#show as HTML
Parameters: {"id"=>"31"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 31], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 31]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.3ms) Started DELETE “/veterinary_offices/31” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#destroy as HTML
Parameters: {"id"=>"31"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 31], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 31]]
[1m[36mVeterinaryOffice Destroy (0.5ms)[0m [1m[31mDELETE FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1[0m [["id", 31]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 1.1ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 90], ["name", "Aurora vet"], ["created_at", "2021-10-27 00:06:58.754998"], ["updated_at", "2021-10-27 00:06:58.754998"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/32” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#show as HTML
Parameters: {"id"=>"32"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 32], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 32]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.5ms) Started GET “/veterinary_offices/32/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"32"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 32], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 32], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 00:06:58.763440"], ["updated_at", "2021-10-27 00:06:58.763440"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/33/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"33"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 33], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 00:06:58.769262"], ["updated_at", "2021-10-27 00:06:58.769262"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/34/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"34"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 34], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms) Started PATCH “/veterinary_offices/34” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"Wichita vet office", "boarding_services"=>"0", "max_patient_capacity"=>"10", "commit"=>"Save ", "id"=>"34"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 34], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit, :id
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mVeterinaryOffice Update (0.4ms)[0m [1m[33mUPDATE "veterinary_offices" SET "name" = $1, "max_patient_capacity" = $2, "updated_at" = $3 WHERE "veterinary_offices"."id" = $4[0m [["name", "Wichita vet office"], ["max_patient_capacity", 10], ["updated_at", "2021-10-27 00:06:58.778584"], ["id", 34]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 0.9ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 00:06:58.784588"], ["updated_at", "2021-10-27 00:06:58.784588"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/35/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"35"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 35], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms) Started PATCH “/veterinary_offices/35” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "boarding_services"=>"0", "max_patient_capacity"=>"", "commit"=>"Save ", "id"=>"35"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 35], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit, :id
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices/35/edit Completed 302 Found in 2ms (ActiveRecord: 0.3ms) Started GET “/veterinary_offices/35/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"35"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 35], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.798496"], ["updated_at", "2021-10-27 00:06:58.798496"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:58.799792"], ["updated_at", "2021-10-27 00:06:58.799792"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 36], ["created_at", "2021-10-27 00:06:58.801748"], ["updated_at", "2021-10-27 00:06:58.801748"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 36], ["created_at", "2021-10-27 00:06:58.803177"], ["updated_at", "2021-10-27 00:06:58.803177"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 36], ["created_at", "2021-10-27 00:06:58.804349"], ["updated_at", "2021-10-27 00:06:58.804349"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 37], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 37], ["created_at", "2021-10-27 00:06:58.805893"], ["updated_at", "2021-10-27 00:06:58.805893"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 37], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 37], ["created_at", "2021-10-27 00:06:58.807442"], ["updated_at", "2021-10-27 00:06:58.807442"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/36/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"36"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 36], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.6ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.815660"], ["updated_at", "2021-10-27 00:06:58.815660"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.6ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:58.817055"], ["updated_at", "2021-10-27 00:06:58.817055"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.9ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 38], ["created_at", "2021-10-27 00:06:58.819019"], ["updated_at", "2021-10-27 00:06:58.819019"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 38], ["created_at", "2021-10-27 00:06:58.821053"], ["updated_at", "2021-10-27 00:06:58.821053"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 38], ["created_at", "2021-10-27 00:06:58.822273"], ["updated_at", "2021-10-27 00:06:58.822273"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 39], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 39], ["created_at", "2021-10-27 00:06:58.823455"], ["updated_at", "2021-10-27 00:06:58.823455"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 39], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 39], ["created_at", "2021-10-27 00:06:58.824655"], ["updated_at", "2021-10-27 00:06:58.824655"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/38/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"38"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 38], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.6ms) Started GET “/veterinarians/36/edit” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"36"}
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.834825"], ["updated_at", "2021-10-27 00:06:58.834825"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:58.836012"], ["updated_at", "2021-10-27 00:06:58.836012"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 40], ["created_at", "2021-10-27 00:06:58.837379"], ["updated_at", "2021-10-27 00:06:58.837379"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 40], ["created_at", "2021-10-27 00:06:58.840553"], ["updated_at", "2021-10-27 00:06:58.840553"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 40], ["created_at", "2021-10-27 00:06:58.842161"], ["updated_at", "2021-10-27 00:06:58.842161"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 41], ["created_at", "2021-10-27 00:06:58.843828"], ["updated_at", "2021-10-27 00:06:58.843828"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 41], ["created_at", "2021-10-27 00:06:58.845348"], ["updated_at", "2021-10-27 00:06:58.845348"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/40/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"40"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 40], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.6ms) Started DELETE “/veterinarians/41” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#destroy as HTML
Parameters: {"id"=>"41"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Destroy (0.2ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 41]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.5ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.1ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]] [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]] [1m[36mCACHE VeterinaryOffice Load (0.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.858678"], ["updated_at", "2021-10-27 00:06:58.858678"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:58.859887"], ["updated_at", "2021-10-27 00:06:58.859887"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 42], ["created_at", "2021-10-27 00:06:58.861341"], ["updated_at", "2021-10-27 00:06:58.861341"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 42], ["created_at", "2021-10-27 00:06:58.862858"], ["updated_at", "2021-10-27 00:06:58.862858"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 42], ["created_at", "2021-10-27 00:06:58.864316"], ["updated_at", "2021-10-27 00:06:58.864316"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 43], ["created_at", "2021-10-27 00:06:58.865755"], ["updated_at", "2021-10-27 00:06:58.865755"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 43], ["created_at", "2021-10-27 00:06:58.867460"], ["updated_at", "2021-10-27 00:06:58.867460"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/42/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"42"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 42], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/42/veterinarians/new” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"42"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.876890"], ["updated_at", "2021-10-27 00:06:58.876890"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:58.878062"], ["updated_at", "2021-10-27 00:06:58.878062"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 44], ["created_at", "2021-10-27 00:06:58.879515"], ["updated_at", "2021-10-27 00:06:58.879515"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 44], ["created_at", "2021-10-27 00:06:58.881155"], ["updated_at", "2021-10-27 00:06:58.881155"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 44], ["created_at", "2021-10-27 00:06:58.882689"], ["updated_at", "2021-10-27 00:06:58.882689"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 45], ["created_at", "2021-10-27 00:06:58.884147"], ["updated_at", "2021-10-27 00:06:58.884147"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 45], ["created_at", "2021-10-27 00:06:58.885691"], ["updated_at", "2021-10-27 00:06:58.885691"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/44/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"44"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 44], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.891886"], ["updated_at", "2021-10-27 00:06:58.891886"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:58.892987"], ["updated_at", "2021-10-27 00:06:58.892987"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 46], ["created_at", "2021-10-27 00:06:58.894407"], ["updated_at", "2021-10-27 00:06:58.894407"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 46], ["created_at", "2021-10-27 00:06:58.895953"], ["updated_at", "2021-10-27 00:06:58.895953"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 46], ["created_at", "2021-10-27 00:06:58.897693"], ["updated_at", "2021-10-27 00:06:58.897693"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 47], ["created_at", "2021-10-27 00:06:58.898932"], ["updated_at", "2021-10-27 00:06:58.898932"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 47], ["created_at", "2021-10-27 00:06:58.900119"], ["updated_at", "2021-10-27 00:06:58.900119"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/46/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"46"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 46], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms) Started GET “/veterinary_offices/46/veterinarians?utf8=%E2%9C%93&review_rating=5&commit=Filter” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"utf8"=>"✓", "review_rating"=>"5", "commit"=>"Filter", "veterinary_office_id"=>"46"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.6ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 AND (review_rating >= '5')[0m [["veterinary_office_id", 46], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.8ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:58.913543"], ["updated_at", "2021-10-27 00:06:58.913543"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:58.914950"], ["updated_at", "2021-10-27 00:06:58.914950"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 48], ["created_at", "2021-10-27 00:06:58.916185"], ["updated_at", "2021-10-27 00:06:58.916185"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 48], ["created_at", "2021-10-27 00:06:58.917346"], ["updated_at", "2021-10-27 00:06:58.917346"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 48], ["created_at", "2021-10-27 00:06:58.918439"], ["updated_at", "2021-10-27 00:06:58.918439"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 49], ["created_at", "2021-10-27 00:06:58.919603"], ["updated_at", "2021-10-27 00:06:58.919603"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 49], ["created_at", "2021-10-27 00:06:58.921145"], ["updated_at", "2021-10-27 00:06:58.921145"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/49/veterinarians” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"49"}
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 49], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.7ms) Started GET “/veterinary_offices/49/veterinarians?sort=alphabetical” for 127.0.0.1 at 2021-10-26 18:06:58 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"sort"=>"alphabetical", "veterinary_office_id"=>"49"}
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.6ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 ORDER BY "veterinarians"."name" ASC[0m [["veterinary_office_id", 49], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.9ms)
Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.9ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 00:06:58.938960"], ["updated_at", "2021-10-27 00:06:58.938960"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 130], ["created_at", "2021-10-27 00:06:58.940616"], ["updated_at", "2021-10-27 00:06:58.940616"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 130], ["created_at", "2021-10-27 00:06:58.942035"], ["updated_at", "2021-10-27 00:06:58.942035"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 130], ["created_at", "2021-10-27 00:06:58.943381"], ["updated_at", "2021-10-27 00:06:58.943381"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 00:06:58.944563"], ["updated_at", "2021-10-27 00:06:58.944563"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 270], ["application_id", 75], ["created_at", "2021-10-27 00:06:58.946623"], ["updated_at", "2021-10-27 00:06:58.946623"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 271], ["application_id", 75], ["created_at", "2021-10-27 00:06:58.948013"], ["updated_at", "2021-10-27 00:06:58.948013"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 75)[0m
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 75)[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 00:06:58.954457"], ["updated_at", "2021-10-27 00:06:58.954457"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 131], ["created_at", "2021-10-27 00:06:58.955712"], ["updated_at", "2021-10-27 00:06:58.955712"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 131], ["created_at", "2021-10-27 00:06:58.957098"], ["updated_at", "2021-10-27 00:06:58.957098"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 131], ["created_at", "2021-10-27 00:06:58.958093"], ["updated_at", "2021-10-27 00:06:58.958093"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 00:06:58.958977"], ["updated_at", "2021-10-27 00:06:58.958977"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 273], ["application_id", 76], ["created_at", "2021-10-27 00:06:58.960586"], ["updated_at", "2021-10-27 00:06:58.960586"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.3ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 274], ["application_id", 76], ["created_at", "2021-10-27 00:06:58.961826"], ["updated_at", "2021-10-27 00:06:58.961826"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 76], ["LIMIT", 1]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 00:06:58.964175"], ["updated_at", "2021-10-27 00:06:58.964175"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 132], ["created_at", "2021-10-27 00:06:58.965509"], ["updated_at", "2021-10-27 00:06:58.965509"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 132], ["created_at", "2021-10-27 00:06:58.966515"], ["updated_at", "2021-10-27 00:06:58.966515"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 132], ["created_at", "2021-10-27 00:06:58.967733"], ["updated_at", "2021-10-27 00:06:58.967733"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 00:06:58.968879"], ["updated_at", "2021-10-27 00:06:58.968879"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.3ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 276], ["application_id", 77], ["created_at", "2021-10-27 00:06:58.970294"], ["updated_at", "2021-10-27 00:06:58.970294"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 277], ["application_id", 77], ["created_at", "2021-10-27 00:06:58.971446"], ["updated_at", "2021-10-27 00:06:58.971446"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 77], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.973804"], ["updated_at", "2021-10-27 00:06:58.973804"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 133], ["created_at", "2021-10-27 00:06:58.974924"], ["updated_at", "2021-10-27 00:06:58.974924"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 133], ["created_at", "2021-10-27 00:06:58.976366"], ["updated_at", "2021-10-27 00:06:58.976366"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 133], ["created_at", "2021-10-27 00:06:58.977536"], ["updated_at", "2021-10-27 00:06:58.977536"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.980634"], ["updated_at", "2021-10-27 00:06:58.980634"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 134], ["created_at", "2021-10-27 00:06:58.981734"], ["updated_at", "2021-10-27 00:06:58.981734"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 134], ["created_at", "2021-10-27 00:06:58.982715"], ["updated_at", "2021-10-27 00:06:58.982715"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 134], ["created_at", "2021-10-27 00:06:58.983971"], ["updated_at", "2021-10-27 00:06:58.983971"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.985594"], ["updated_at", "2021-10-27 00:06:58.985594"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 135], ["created_at", "2021-10-27 00:06:58.986614"], ["updated_at", "2021-10-27 00:06:58.986614"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 135], ["created_at", "2021-10-27 00:06:58.988051"], ["updated_at", "2021-10-27 00:06:58.988051"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 135], ["created_at", "2021-10-27 00:06:58.989341"], ["updated_at", "2021-10-27 00:06:58.989341"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:58.991397"], ["updated_at", "2021-10-27 00:06:58.991397"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 136], ["created_at", "2021-10-27 00:06:58.992688"], ["updated_at", "2021-10-27 00:06:58.992688"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 136], ["created_at", "2021-10-27 00:06:58.993665"], ["updated_at", "2021-10-27 00:06:58.993665"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 136], ["created_at", "2021-10-27 00:06:58.994655"], ["updated_at", "2021-10-27 00:06:58.994655"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.000168"], ["updated_at", "2021-10-27 00:06:59.000168"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 137], ["created_at", "2021-10-27 00:06:59.001406"], ["updated_at", "2021-10-27 00:06:59.001406"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 137], ["created_at", "2021-10-27 00:06:59.002381"], ["updated_at", "2021-10-27 00:06:59.002381"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 137], ["created_at", "2021-10-27 00:06:59.003608"], ["updated_at", "2021-10-27 00:06:59.003608"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.007467"], ["updated_at", "2021-10-27 00:06:59.007467"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 138], ["created_at", "2021-10-27 00:06:59.008740"], ["updated_at", "2021-10-27 00:06:59.008740"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 138], ["created_at", "2021-10-27 00:06:59.009738"], ["updated_at", "2021-10-27 00:06:59.009738"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 138], ["created_at", "2021-10-27 00:06:59.010781"], ["updated_at", "2021-10-27 00:06:59.010781"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.013617"], ["updated_at", "2021-10-27 00:06:59.013617"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 139], ["created_at", "2021-10-27 00:06:59.014699"], ["updated_at", "2021-10-27 00:06:59.014699"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 139], ["created_at", "2021-10-27 00:06:59.016000"], ["updated_at", "2021-10-27 00:06:59.016000"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 139], ["created_at", "2021-10-27 00:06:59.016996"], ["updated_at", "2021-10-27 00:06:59.016996"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Claw%')[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.019188"], ["updated_at", "2021-10-27 00:06:59.019188"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 140], ["created_at", "2021-10-27 00:06:59.020952"], ["updated_at", "2021-10-27 00:06:59.020952"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 140], ["created_at", "2021-10-27 00:06:59.022128"], ["updated_at", "2021-10-27 00:06:59.022128"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 140], ["created_at", "2021-10-27 00:06:59.023102"], ["updated_at", "2021-10-27 00:06:59.023102"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.025012"], ["updated_at", "2021-10-27 00:06:59.025012"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 141], ["created_at", "2021-10-27 00:06:59.026035"], ["updated_at", "2021-10-27 00:06:59.026035"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 141], ["created_at", "2021-10-27 00:06:59.027297"], ["updated_at", "2021-10-27 00:06:59.027297"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 141], ["created_at", "2021-10-27 00:06:59.028526"], ["updated_at", "2021-10-27 00:06:59.028526"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.030261"], ["updated_at", "2021-10-27 00:06:59.030261"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:59.031347"], ["updated_at", "2021-10-27 00:06:59.031347"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:59.032351"], ["updated_at", "2021-10-27 00:06:59.032351"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 142], ["created_at", "2021-10-27 00:06:59.033342"], ["updated_at", "2021-10-27 00:06:59.033342"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 142], ["created_at", "2021-10-27 00:06:59.034349"], ["updated_at", "2021-10-27 00:06:59.034349"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 144], ["created_at", "2021-10-27 00:06:59.035998"], ["updated_at", "2021-10-27 00:06:59.035998"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 142], ["created_at", "2021-10-27 00:06:59.037058"], ["updated_at", "2021-10-27 00:06:59.037058"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.038754"], ["updated_at", "2021-10-27 00:06:59.038754"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:59.039572"], ["updated_at", "2021-10-27 00:06:59.039572"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:59.040361"], ["updated_at", "2021-10-27 00:06:59.040361"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 145], ["created_at", "2021-10-27 00:06:59.041428"], ["updated_at", "2021-10-27 00:06:59.041428"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 145], ["created_at", "2021-10-27 00:06:59.042752"], ["updated_at", "2021-10-27 00:06:59.042752"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 147], ["created_at", "2021-10-27 00:06:59.044148"], ["updated_at", "2021-10-27 00:06:59.044148"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 145], ["created_at", "2021-10-27 00:06:59.045497"], ["updated_at", "2021-10-27 00:06:59.045497"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.052808"], ["updated_at", "2021-10-27 00:06:59.052808"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:59.053930"], ["updated_at", "2021-10-27 00:06:59.053930"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:59.054947"], ["updated_at", "2021-10-27 00:06:59.054947"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 148], ["created_at", "2021-10-27 00:06:59.056209"], ["updated_at", "2021-10-27 00:06:59.056209"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 148], ["created_at", "2021-10-27 00:06:59.057565"], ["updated_at", "2021-10-27 00:06:59.057565"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 150], ["created_at", "2021-10-27 00:06:59.058875"], ["updated_at", "2021-10-27 00:06:59.058875"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 148], ["created_at", "2021-10-27 00:06:59.060111"], ["updated_at", "2021-10-27 00:06:59.060111"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.065054"], ["updated_at", "2021-10-27 00:06:59.065054"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:59.066359"], ["updated_at", "2021-10-27 00:06:59.066359"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:59.067427"], ["updated_at", "2021-10-27 00:06:59.067427"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 151], ["created_at", "2021-10-27 00:06:59.068529"], ["updated_at", "2021-10-27 00:06:59.068529"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 151], ["created_at", "2021-10-27 00:06:59.069707"], ["updated_at", "2021-10-27 00:06:59.069707"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 153], ["created_at", "2021-10-27 00:06:59.071024"], ["updated_at", "2021-10-27 00:06:59.071024"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 151], ["created_at", "2021-10-27 00:06:59.072240"], ["updated_at", "2021-10-27 00:06:59.072240"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.076164"], ["updated_at", "2021-10-27 00:06:59.076164"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:59.077224"], ["updated_at", "2021-10-27 00:06:59.077224"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:59.078252"], ["updated_at", "2021-10-27 00:06:59.078252"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 154], ["created_at", "2021-10-27 00:06:59.079513"], ["updated_at", "2021-10-27 00:06:59.079513"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 154], ["created_at", "2021-10-27 00:06:59.080889"], ["updated_at", "2021-10-27 00:06:59.080889"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 156], ["created_at", "2021-10-27 00:06:59.082270"], ["updated_at", "2021-10-27 00:06:59.082270"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 154], ["created_at", "2021-10-27 00:06:59.083769"], ["updated_at", "2021-10-27 00:06:59.083769"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.087096"], ["updated_at", "2021-10-27 00:06:59.087096"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:59.088190"], ["updated_at", "2021-10-27 00:06:59.088190"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:59.089201"], ["updated_at", "2021-10-27 00:06:59.089201"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 157], ["created_at", "2021-10-27 00:06:59.090444"], ["updated_at", "2021-10-27 00:06:59.090444"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 157], ["created_at", "2021-10-27 00:06:59.091727"], ["updated_at", "2021-10-27 00:06:59.091727"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 159], ["created_at", "2021-10-27 00:06:59.093063"], ["updated_at", "2021-10-27 00:06:59.093063"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 157], ["created_at", "2021-10-27 00:06:59.094357"], ["updated_at", "2021-10-27 00:06:59.094357"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.097048"], ["updated_at", "2021-10-27 00:06:59.097048"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:59.098158"], ["updated_at", "2021-10-27 00:06:59.098158"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:59.099233"], ["updated_at", "2021-10-27 00:06:59.099233"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 160], ["created_at", "2021-10-27 00:06:59.100658"], ["updated_at", "2021-10-27 00:06:59.100658"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 160], ["created_at", "2021-10-27 00:06:59.101684"], ["updated_at", "2021-10-27 00:06:59.101684"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 162], ["created_at", "2021-10-27 00:06:59.102693"], ["updated_at", "2021-10-27 00:06:59.102693"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 160], ["created_at", "2021-10-27 00:06:59.103648"], ["updated_at", "2021-10-27 00:06:59.103648"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.105729"], ["updated_at", "2021-10-27 00:06:59.105729"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:59.106780"], ["updated_at", "2021-10-27 00:06:59.106780"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:59.107926"], ["updated_at", "2021-10-27 00:06:59.107926"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 163], ["created_at", "2021-10-27 00:06:59.109241"], ["updated_at", "2021-10-27 00:06:59.109241"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 163], ["created_at", "2021-10-27 00:06:59.110755"], ["updated_at", "2021-10-27 00:06:59.110755"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 165], ["created_at", "2021-10-27 00:06:59.112085"], ["updated_at", "2021-10-27 00:06:59.112085"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 163], ["created_at", "2021-10-27 00:06:59.113336"], ["updated_at", "2021-10-27 00:06:59.113336"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (1.5ms)[0m [1m[34mSELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.117177"], ["updated_at", "2021-10-27 00:06:59.117177"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:59.118020"], ["updated_at", "2021-10-27 00:06:59.118020"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:59.118786"], ["updated_at", "2021-10-27 00:06:59.118786"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 166], ["created_at", "2021-10-27 00:06:59.119791"], ["updated_at", "2021-10-27 00:06:59.119791"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 166], ["created_at", "2021-10-27 00:06:59.120840"], ["updated_at", "2021-10-27 00:06:59.120840"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 168], ["created_at", "2021-10-27 00:06:59.122248"], ["updated_at", "2021-10-27 00:06:59.122248"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 166], ["created_at", "2021-10-27 00:06:59.123794"], ["updated_at", "2021-10-27 00:06:59.123794"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 166], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.126265"], ["updated_at", "2021-10-27 00:06:59.126265"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:59.127340"], ["updated_at", "2021-10-27 00:06:59.127340"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:59.128369"], ["updated_at", "2021-10-27 00:06:59.128369"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 169], ["created_at", "2021-10-27 00:06:59.129613"], ["updated_at", "2021-10-27 00:06:59.129613"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 169], ["created_at", "2021-10-27 00:06:59.130890"], ["updated_at", "2021-10-27 00:06:59.130890"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 171], ["created_at", "2021-10-27 00:06:59.132313"], ["updated_at", "2021-10-27 00:06:59.132313"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 169], ["created_at", "2021-10-27 00:06:59.133565"], ["updated_at", "2021-10-27 00:06:59.133565"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC[0m [["shelter_id", 169], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.136327"], ["updated_at", "2021-10-27 00:06:59.136327"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:59.137393"], ["updated_at", "2021-10-27 00:06:59.137393"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:59.138405"], ["updated_at", "2021-10-27 00:06:59.138405"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 172], ["created_at", "2021-10-27 00:06:59.139633"], ["updated_at", "2021-10-27 00:06:59.139633"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 172], ["created_at", "2021-10-27 00:06:59.141066"], ["updated_at", "2021-10-27 00:06:59.141066"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 174], ["created_at", "2021-10-27 00:06:59.142425"], ["updated_at", "2021-10-27 00:06:59.142425"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 172], ["created_at", "2021-10-27 00:06:59.143755"], ["updated_at", "2021-10-27 00:06:59.143755"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)[0m [["shelter_id", 172], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 00:06:59.146480"], ["updated_at", "2021-10-27 00:06:59.146480"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 00:06:59.147344"], ["updated_at", "2021-10-27 00:06:59.147344"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 00:06:59.148190"], ["updated_at", "2021-10-27 00:06:59.148190"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 175], ["created_at", "2021-10-27 00:06:59.149344"], ["updated_at", "2021-10-27 00:06:59.149344"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 175], ["created_at", "2021-10-27 00:06:59.150698"], ["updated_at", "2021-10-27 00:06:59.150698"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 177], ["created_at", "2021-10-27 00:06:59.152072"], ["updated_at", "2021-10-27 00:06:59.152072"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 175], ["created_at", "2021-10-27 00:06:59.153331"], ["updated_at", "2021-10-27 00:06:59.153331"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 175]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.156025"], ["updated_at", "2021-10-27 00:06:59.156025"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 50], ["created_at", "2021-10-27 00:06:59.157354"], ["updated_at", "2021-10-27 00:06:59.157354"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 50], ["created_at", "2021-10-27 00:06:59.158653"], ["updated_at", "2021-10-27 00:06:59.158653"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 50], ["created_at", "2021-10-27 00:06:59.159864"], ["updated_at", "2021-10-27 00:06:59.159864"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 50], ["created_at", "2021-10-27 00:06:59.161421"], ["updated_at", "2021-10-27 00:06:59.161421"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.164647"], ["updated_at", "2021-10-27 00:06:59.164647"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 51], ["created_at", "2021-10-27 00:06:59.165983"], ["updated_at", "2021-10-27 00:06:59.165983"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 51], ["created_at", "2021-10-27 00:06:59.167236"], ["updated_at", "2021-10-27 00:06:59.167236"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 51], ["created_at", "2021-10-27 00:06:59.168473"], ["updated_at", "2021-10-27 00:06:59.168473"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 51], ["created_at", "2021-10-27 00:06:59.169663"], ["updated_at", "2021-10-27 00:06:59.169663"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.6ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.174637"], ["updated_at", "2021-10-27 00:06:59.174637"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 52], ["created_at", "2021-10-27 00:06:59.176187"], ["updated_at", "2021-10-27 00:06:59.176187"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 52], ["created_at", "2021-10-27 00:06:59.177430"], ["updated_at", "2021-10-27 00:06:59.177430"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 52], ["created_at", "2021-10-27 00:06:59.178428"], ["updated_at", "2021-10-27 00:06:59.178428"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 52], ["created_at", "2021-10-27 00:06:59.179517"], ["updated_at", "2021-10-27 00:06:59.179517"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.183123"], ["updated_at", "2021-10-27 00:06:59.183123"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 53], ["created_at", "2021-10-27 00:06:59.184469"], ["updated_at", "2021-10-27 00:06:59.184469"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 53], ["created_at", "2021-10-27 00:06:59.185717"], ["updated_at", "2021-10-27 00:06:59.185717"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 53], ["created_at", "2021-10-27 00:06:59.186902"], ["updated_at", "2021-10-27 00:06:59.186902"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 53], ["created_at", "2021-10-27 00:06:59.188076"], ["updated_at", "2021-10-27 00:06:59.188076"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.191081"], ["updated_at", "2021-10-27 00:06:59.191081"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 54], ["created_at", "2021-10-27 00:06:59.192404"], ["updated_at", "2021-10-27 00:06:59.192404"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 54], ["created_at", "2021-10-27 00:06:59.193693"], ["updated_at", "2021-10-27 00:06:59.193693"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 54], ["created_at", "2021-10-27 00:06:59.194958"], ["updated_at", "2021-10-27 00:06:59.194958"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 54], ["created_at", "2021-10-27 00:06:59.196139"], ["updated_at", "2021-10-27 00:06:59.196139"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.5ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE (name ILIKE '%Ta%')[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.198684"], ["updated_at", "2021-10-27 00:06:59.198684"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 55], ["created_at", "2021-10-27 00:06:59.199895"], ["updated_at", "2021-10-27 00:06:59.199895"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 55], ["created_at", "2021-10-27 00:06:59.201109"], ["updated_at", "2021-10-27 00:06:59.201109"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 55], ["created_at", "2021-10-27 00:06:59.202362"], ["updated_at", "2021-10-27 00:06:59.202362"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 55], ["created_at", "2021-10-27 00:06:59.203615"], ["updated_at", "2021-10-27 00:06:59.203615"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.205852"], ["updated_at", "2021-10-27 00:06:59.205852"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 56], ["created_at", "2021-10-27 00:06:59.207055"], ["updated_at", "2021-10-27 00:06:59.207055"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 56], ["created_at", "2021-10-27 00:06:59.208270"], ["updated_at", "2021-10-27 00:06:59.208270"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 56], ["created_at", "2021-10-27 00:06:59.209445"], ["updated_at", "2021-10-27 00:06:59.209445"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 56], ["created_at", "2021-10-27 00:06:59.210622"], ["updated_at", "2021-10-27 00:06:59.210622"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.212425"], ["updated_at", "2021-10-27 00:06:59.212425"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:59.213422"], ["updated_at", "2021-10-27 00:06:59.213422"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 57], ["created_at", "2021-10-27 00:06:59.214845"], ["updated_at", "2021-10-27 00:06:59.214845"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 57], ["created_at", "2021-10-27 00:06:59.216334"], ["updated_at", "2021-10-27 00:06:59.216334"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 57], ["created_at", "2021-10-27 00:06:59.217799"], ["updated_at", "2021-10-27 00:06:59.217799"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 58], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 58], ["created_at", "2021-10-27 00:06:59.219261"], ["updated_at", "2021-10-27 00:06:59.219261"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.221387"], ["updated_at", "2021-10-27 00:06:59.221387"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:59.222342"], ["updated_at", "2021-10-27 00:06:59.222342"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 59], ["created_at", "2021-10-27 00:06:59.223500"], ["updated_at", "2021-10-27 00:06:59.223500"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 59], ["created_at", "2021-10-27 00:06:59.224947"], ["updated_at", "2021-10-27 00:06:59.224947"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 59], ["created_at", "2021-10-27 00:06:59.226390"], ["updated_at", "2021-10-27 00:06:59.226390"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 60], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 60], ["created_at", "2021-10-27 00:06:59.227882"], ["updated_at", "2021-10-27 00:06:59.227882"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.232652"], ["updated_at", "2021-10-27 00:06:59.232652"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:59.233735"], ["updated_at", "2021-10-27 00:06:59.233735"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 61], ["created_at", "2021-10-27 00:06:59.235140"], ["updated_at", "2021-10-27 00:06:59.235140"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 61], ["created_at", "2021-10-27 00:06:59.236752"], ["updated_at", "2021-10-27 00:06:59.236752"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 61], ["created_at", "2021-10-27 00:06:59.238399"], ["updated_at", "2021-10-27 00:06:59.238399"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 62], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 62], ["created_at", "2021-10-27 00:06:59.239541"], ["updated_at", "2021-10-27 00:06:59.239541"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.243415"], ["updated_at", "2021-10-27 00:06:59.243415"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:59.244549"], ["updated_at", "2021-10-27 00:06:59.244549"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 63], ["created_at", "2021-10-27 00:06:59.245978"], ["updated_at", "2021-10-27 00:06:59.245978"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 63], ["created_at", "2021-10-27 00:06:59.247460"], ["updated_at", "2021-10-27 00:06:59.247460"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]]
[1m[36mVeterinarian Create (1.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 63], ["created_at", "2021-10-27 00:06:59.248901"], ["updated_at", "2021-10-27 00:06:59.248901"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 64], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 64], ["created_at", "2021-10-27 00:06:59.251316"], ["updated_at", "2021-10-27 00:06:59.251316"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.254363"], ["updated_at", "2021-10-27 00:06:59.254363"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:59.255362"], ["updated_at", "2021-10-27 00:06:59.255362"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 65], ["created_at", "2021-10-27 00:06:59.256557"], ["updated_at", "2021-10-27 00:06:59.256557"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 65], ["created_at", "2021-10-27 00:06:59.257717"], ["updated_at", "2021-10-27 00:06:59.257717"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 65], ["created_at", "2021-10-27 00:06:59.258827"], ["updated_at", "2021-10-27 00:06:59.258827"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 66], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 66], ["created_at", "2021-10-27 00:06:59.260003"], ["updated_at", "2021-10-27 00:06:59.260003"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE (name ILIKE '%Vets%')[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.262659"], ["updated_at", "2021-10-27 00:06:59.262659"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:59.263708"], ["updated_at", "2021-10-27 00:06:59.263708"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 67], ["created_at", "2021-10-27 00:06:59.265078"], ["updated_at", "2021-10-27 00:06:59.265078"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 67], ["created_at", "2021-10-27 00:06:59.266606"], ["updated_at", "2021-10-27 00:06:59.266606"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 67], ["created_at", "2021-10-27 00:06:59.268170"], ["updated_at", "2021-10-27 00:06:59.268170"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.9ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 68], ["created_at", "2021-10-27 00:06:59.270170"], ["updated_at", "2021-10-27 00:06:59.270170"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.272781"], ["updated_at", "2021-10-27 00:06:59.272781"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:59.273636"], ["updated_at", "2021-10-27 00:06:59.273636"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 69], ["created_at", "2021-10-27 00:06:59.274796"], ["updated_at", "2021-10-27 00:06:59.274796"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 69], ["created_at", "2021-10-27 00:06:59.276004"], ["updated_at", "2021-10-27 00:06:59.276004"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 69], ["created_at", "2021-10-27 00:06:59.277305"], ["updated_at", "2021-10-27 00:06:59.277305"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 70], ["created_at", "2021-10-27 00:06:59.278706"], ["updated_at", "2021-10-27 00:06:59.278706"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (1.0ms)[0m [1m[34mSELECT veterinary_offices.*, count(veterinarians.id) AS vets_count FROM "veterinary_offices" LEFT OUTER JOIN veterinarians ON veterinarians.veterinary_office_id = veterinary_offices.id GROUP BY veterinary_offices.id ORDER BY vets_count DESC[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.281765"], ["updated_at", "2021-10-27 00:06:59.281765"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:59.282780"], ["updated_at", "2021-10-27 00:06:59.282780"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 71], ["created_at", "2021-10-27 00:06:59.284139"], ["updated_at", "2021-10-27 00:06:59.284139"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 71], ["created_at", "2021-10-27 00:06:59.285400"], ["updated_at", "2021-10-27 00:06:59.285400"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 71], ["created_at", "2021-10-27 00:06:59.286599"], ["updated_at", "2021-10-27 00:06:59.286599"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 72], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 72], ["created_at", "2021-10-27 00:06:59.287795"], ["updated_at", "2021-10-27 00:06:59.287795"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 71]]
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 72]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.290552"], ["updated_at", "2021-10-27 00:06:59.290552"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:59.291481"], ["updated_at", "2021-10-27 00:06:59.291481"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 73], ["created_at", "2021-10-27 00:06:59.292783"], ["updated_at", "2021-10-27 00:06:59.292783"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 73], ["created_at", "2021-10-27 00:06:59.294210"], ["updated_at", "2021-10-27 00:06:59.294210"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 73], ["created_at", "2021-10-27 00:06:59.295578"], ["updated_at", "2021-10-27 00:06:59.295578"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 74], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 74], ["created_at", "2021-10-27 00:06:59.296904"], ["updated_at", "2021-10-27 00:06:59.296904"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 ORDER BY "veterinarians"."name" ASC[0m [["veterinary_office_id", 73], ["on_call", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.299060"], ["updated_at", "2021-10-27 00:06:59.299060"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:59.299901"], ["updated_at", "2021-10-27 00:06:59.299901"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 75], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 75], ["created_at", "2021-10-27 00:06:59.301117"], ["updated_at", "2021-10-27 00:06:59.301117"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 75], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 75], ["created_at", "2021-10-27 00:06:59.302392"], ["updated_at", "2021-10-27 00:06:59.302392"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 75], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 75], ["created_at", "2021-10-27 00:06:59.303618"], ["updated_at", "2021-10-27 00:06:59.303618"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 76], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 76], ["created_at", "2021-10-27 00:06:59.304826"], ["updated_at", "2021-10-27 00:06:59.304826"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.1ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 75], ["on_call", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 00:06:59.306688"], ["updated_at", "2021-10-27 00:06:59.306688"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 00:06:59.307493"], ["updated_at", "2021-10-27 00:06:59.307493"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 77], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 77], ["created_at", "2021-10-27 00:06:59.308652"], ["updated_at", "2021-10-27 00:06:59.308652"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 77], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 77], ["created_at", "2021-10-27 00:06:59.309889"], ["updated_at", "2021-10-27 00:06:59.309889"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 77], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 77], ["created_at", "2021-10-27 00:06:59.311455"], ["updated_at", "2021-10-27 00:06:59.311455"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 78], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 78], ["created_at", "2021-10-27 00:06:59.314511"], ["updated_at", "2021-10-27 00:06:59.314511"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 AND (review_rating >= 9)[0m [["veterinary_office_id", 77], ["on_call", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (22.2ms)[0m [1m[35mDROP DATABASE IF EXISTS "adopt_dont_shop_test"[0m
[1m[35m (112.4ms)[0m [1m[35mCREATE DATABASE "adopt_dont_shop_test" ENCODING = 'unicode'[0m
[1m[35mSQL (10.3ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
[1m[35m (0.9ms)[0m [1m[35mDROP TABLE IF EXISTS "application_pets" CASCADE[0m
[1m[35m (6.7ms)[0m [1m[35mCREATE TABLE "application_pets" ("id" bigserial primary key, "pet_id" bigint, "application_id" bigint, "status" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (1.1ms)[0m [1m[35mCREATE INDEX "index_application_pets_on_application_id" ON "application_pets" ("application_id")[0m
[1m[35m (1.6ms)[0m [1m[35mCREATE INDEX "index_application_pets_on_pet_id" ON "application_pets" ("pet_id")[0m
[1m[35m (2.9ms)[0m [1m[35mDROP TABLE IF EXISTS "applications" CASCADE[0m
[1m[35m (3.2ms)[0m [1m[35mCREATE TABLE "applications" ("id" bigserial primary key, "applicant_name" character varying, "street_address" character varying, "city" character varying, "state" character varying, "zipcode" character varying, "application_status" character varying, "why" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "pets" CASCADE[0m
[1m[35m (2.9ms)[0m [1m[35mCREATE TABLE "pets" ("id" bigserial primary key, "adoptable" boolean, "age" integer, "breed" character varying, "name" character varying, "shelter_id" bigint NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_pets_on_shelter_id" ON "pets" ("shelter_id")[0m
[1m[35m (0.3ms)[0m [1m[35mDROP TABLE IF EXISTS "shelters" CASCADE[0m
[1m[35m (3.3ms)[0m [1m[35mCREATE TABLE "shelters" ("id" bigserial primary key, "foster_program" boolean, "name" character varying, "city" character varying, "rank" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (0.4ms)[0m [1m[35mDROP TABLE IF EXISTS "veterinarians" CASCADE[0m
[1m[35m (3.3ms)[0m [1m[35mCREATE TABLE "veterinarians" ("id" bigserial primary key, "on_call" boolean, "review_rating" integer, "name" character varying, "veterinary_office_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (0.6ms)[0m [1m[35mCREATE INDEX "index_veterinarians_on_veterinary_office_id" ON "veterinarians" ("veterinary_office_id")[0m
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "veterinary_offices" CASCADE[0m
[1m[35m (3.8ms)[0m [1m[35mCREATE TABLE "veterinary_offices" ("id" bigserial primary key, "boarding_services" boolean, "max_patient_capacity" integer, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (3.1ms)[0m [1m[35mALTER TABLE "application_pets" ADD CONSTRAINT "fk_rails_6ac8983e3b"
FOREIGN KEY (“application_id”)
REFERENCES "applications" ("id")
[0m
[1m[35m (2.2ms)[0m [1m[35mALTER TABLE "application_pets" ADD CONSTRAINT "fk_rails_412710cd26"
FOREIGN KEY (“pet_id”)
REFERENCES "pets" ("id")
[0m
[1m[35m (1.5ms)[0m [1m[35mALTER TABLE "pets" ADD CONSTRAINT "fk_rails_92fb5d7a05"
FOREIGN KEY (“shelter_id”)
REFERENCES "shelters" ("id")
[0m
[1m[35m (1.4ms)[0m [1m[35mALTER TABLE "veterinarians" ADD CONSTRAINT "fk_rails_d296209ae6"
FOREIGN KEY (“veterinary_office_id”)
REFERENCES "veterinary_offices" ("id")
[0m
[1m[35m (3.0ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.3ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (20211024000652)[0m
[1m[35m (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES
(20210212235502), (20210213001632), (20210212235735), (20211023230147), (20210213001717);
[0m
[1m[35m (5.4ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[36mActiveRecord::InternalMetadata Create (0.3ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "test"], ["created_at", "2021-10-27 01:37:33.685195"], ["updated_at", "2021-10-27 01:37:33.685195"]]
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
[1m[35m (0.8ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 01:37:33.770984"], ["updated_at", "2021-10-27 01:37:33.770984"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 1], ["created_at", "2021-10-27 01:37:33.808488"], ["updated_at", "2021-10-27 01:37:33.808488"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 1], ["created_at", "2021-10-27 01:37:33.814480"], ["updated_at", "2021-10-27 01:37:33.814480"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 1], ["created_at", "2021-10-27 01:37:33.816002"], ["updated_at", "2021-10-27 01:37:33.816002"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.8ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 01:37:33.832512"], ["updated_at", "2021-10-27 01:37:33.832512"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.8ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 1], ["application_id", 1], ["created_at", "2021-10-27 01:37:33.851991"], ["updated_at", "2021-10-27 01:37:33.851991"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.2ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 2], ["application_id", 1], ["created_at", "2021-10-27 01:37:33.853859"], ["updated_at", "2021-10-27 01:37:33.853859"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/1” for 127.0.0.1 at 2021-10-26 19:37:33 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"1"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 1], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 1], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 1)[0m
Rendered applications/show.html.erb within layouts/application (5.8ms)
Completed 200 OK in 102ms (Views: 93.6ms | ActiveRecord: 2.4ms) Started GET “/pets/1” for 127.0.0.1 at 2021-10-26 19:37:33 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"1"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 1], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 1], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.6ms) Started GET “/applications/1” for 127.0.0.1 at 2021-10-26 19:37:33 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"1"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 1], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 1], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 1)[0m
Rendered applications/show.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.9ms) Started GET “/pets/2” for 127.0.0.1 at 2021-10-26 19:37:33 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"2"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 1], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.5ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 01:37:34.044504"], ["updated_at", "2021-10-27 01:37:34.044504"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 2], ["created_at", "2021-10-27 01:37:34.045908"], ["updated_at", "2021-10-27 01:37:34.045908"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 2], ["created_at", "2021-10-27 01:37:34.047288"], ["updated_at", "2021-10-27 01:37:34.047288"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 2], ["created_at", "2021-10-27 01:37:34.048723"], ["updated_at", "2021-10-27 01:37:34.048723"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 01:37:34.049628"], ["updated_at", "2021-10-27 01:37:34.049628"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/2” for 127.0.0.1 at 2021-10-26 19:37:34 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"2"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 2)[0m
Rendered applications/show.html.erb within layouts/application (0.9ms)
Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.1ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 01:37:34.056185"], ["updated_at", "2021-10-27 01:37:34.056185"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 3], ["created_at", "2021-10-27 01:37:34.057333"], ["updated_at", "2021-10-27 01:37:34.057333"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 01:37:34.058231"], ["updated_at", "2021-10-27 01:37:34.058231"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/3” for 127.0.0.1 at 2021-10-26 19:37:34 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"3"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 3], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 3], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 3)[0m
Rendered applications/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.7ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 01:37:34.064525"], ["updated_at", "2021-10-27 01:37:34.064525"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 4], ["created_at", "2021-10-27 01:37:34.065776"], ["updated_at", "2021-10-27 01:37:34.065776"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 4], ["created_at", "2021-10-27 01:37:34.066889"], ["updated_at", "2021-10-27 01:37:34.066889"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 4], ["created_at", "2021-10-27 01:37:34.068161"], ["updated_at", "2021-10-27 01:37:34.068161"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 01:37:34.069044"], ["updated_at", "2021-10-27 01:37:34.069044"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/4” for 127.0.0.1 at 2021-10-26 19:37:34 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"4"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 4], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 4], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 4)[0m
Rendered applications/show.html.erb within layouts/application (1.0ms)
Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.0ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 01:43:22.673192"], ["updated_at", "2021-10-27 01:43:22.673192"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 5], ["created_at", "2021-10-27 01:43:22.706789"], ["updated_at", "2021-10-27 01:43:22.706789"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 5], ["created_at", "2021-10-27 01:43:22.709290"], ["updated_at", "2021-10-27 01:43:22.709290"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 5], ["created_at", "2021-10-27 01:43:22.710475"], ["updated_at", "2021-10-27 01:43:22.710475"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 01:43:22.727067"], ["updated_at", "2021-10-27 01:43:22.727067"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 11], ["application_id", 5], ["created_at", "2021-10-27 01:43:22.739145"], ["updated_at", "2021-10-27 01:43:22.739145"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.2ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 12], ["application_id", 5], ["created_at", "2021-10-27 01:43:22.740737"], ["updated_at", "2021-10-27 01:43:22.740737"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/5” for 127.0.0.1 at 2021-10-26 19:43:22 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"5"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (0.9ms)
Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.6ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 01:43:22.792150"], ["updated_at", "2021-10-27 01:43:22.792150"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 6], ["created_at", "2021-10-27 01:43:22.793971"], ["updated_at", "2021-10-27 01:43:22.793971"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 6], ["created_at", "2021-10-27 01:43:22.795645"], ["updated_at", "2021-10-27 01:43:22.795645"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 6], ["created_at", "2021-10-27 01:43:22.797215"], ["updated_at", "2021-10-27 01:43:22.797215"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 01:43:22.798492"], ["updated_at", "2021-10-27 01:43:22.798492"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/6” for 127.0.0.1 at 2021-10-26 19:43:22 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"6"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (0.6ms)
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 01:43:22.802873"], ["updated_at", "2021-10-27 01:43:22.802873"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 7], ["created_at", "2021-10-27 01:43:22.804235"], ["updated_at", "2021-10-27 01:43:22.804235"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 01:43:22.805405"], ["updated_at", "2021-10-27 01:43:22.805405"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/7” for 127.0.0.1 at 2021-10-26 19:43:22 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"7"}
[1m[36mApplication Load (0.6ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]]
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (0.6ms)
Completed 500 Internal Server Error in 2ms (ActiveRecord: 1.0ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 01:43:22.810385"], ["updated_at", "2021-10-27 01:43:22.810385"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 8], ["created_at", "2021-10-27 01:43:22.811929"], ["updated_at", "2021-10-27 01:43:22.811929"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 8], ["created_at", "2021-10-27 01:43:22.813094"], ["updated_at", "2021-10-27 01:43:22.813094"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 8], ["created_at", "2021-10-27 01:43:22.814103"], ["updated_at", "2021-10-27 01:43:22.814103"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 01:43:22.815020"], ["updated_at", "2021-10-27 01:43:22.815020"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/8” for 127.0.0.1 at 2021-10-26 19:43:22 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"8"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
Rendered applications/show.html.erb within layouts/application (0.6ms)
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.9ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 01:44:37.007986"], ["updated_at", "2021-10-27 01:44:37.007986"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 9], ["created_at", "2021-10-27 01:44:37.042069"], ["updated_at", "2021-10-27 01:44:37.042069"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 9], ["created_at", "2021-10-27 01:44:37.044310"], ["updated_at", "2021-10-27 01:44:37.044310"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 9], ["created_at", "2021-10-27 01:44:37.045508"], ["updated_at", "2021-10-27 01:44:37.045508"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 01:44:37.062108"], ["updated_at", "2021-10-27 01:44:37.062108"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 21], ["application_id", 9], ["created_at", "2021-10-27 01:44:37.079542"], ["updated_at", "2021-10-27 01:44:37.079542"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 22], ["application_id", 9], ["created_at", "2021-10-27 01:44:37.082103"], ["updated_at", "2021-10-27 01:44:37.082103"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/9” for 127.0.0.1 at 2021-10-26 19:44:37 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"9"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 9)[0m
Rendered applications/show.html.erb within layouts/application (5.0ms)
Completed 200 OK in 92ms (Views: 85.0ms | ActiveRecord: 1.9ms) Started GET “/pets/21” for 127.0.0.1 at 2021-10-26 19:44:37 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"21"}
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 21], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.7ms) Started GET “/applications/9” for 127.0.0.1 at 2021-10-26 19:44:37 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"9"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 9)[0m
Rendered applications/show.html.erb within layouts/application (1.0ms)
Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 1.3ms) Started GET “/pets/22” for 127.0.0.1 at 2021-10-26 19:44:37 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"22"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 22], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.5ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 01:44:37.264956"], ["updated_at", "2021-10-27 01:44:37.264956"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 10], ["created_at", "2021-10-27 01:44:37.266638"], ["updated_at", "2021-10-27 01:44:37.266638"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 10], ["created_at", "2021-10-27 01:44:37.268033"], ["updated_at", "2021-10-27 01:44:37.268033"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 10], ["created_at", "2021-10-27 01:44:37.269055"], ["updated_at", "2021-10-27 01:44:37.269055"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 01:44:37.270376"], ["updated_at", "2021-10-27 01:44:37.270376"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/10” for 127.0.0.1 at 2021-10-26 19:44:37 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"10"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 10], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 10], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 10)[0m
Rendered applications/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 01:44:37.277468"], ["updated_at", "2021-10-27 01:44:37.277468"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 11], ["created_at", "2021-10-27 01:44:37.278939"], ["updated_at", "2021-10-27 01:44:37.278939"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 01:44:37.279933"], ["updated_at", "2021-10-27 01:44:37.279933"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/11” for 127.0.0.1 at 2021-10-26 19:44:37 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"11"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 11)[0m
Rendered applications/show.html.erb within layouts/application (1.2ms)
Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 1.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 01:44:37.286034"], ["updated_at", "2021-10-27 01:44:37.286034"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 12], ["created_at", "2021-10-27 01:44:37.287419"], ["updated_at", "2021-10-27 01:44:37.287419"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 12], ["created_at", "2021-10-27 01:44:37.288451"], ["updated_at", "2021-10-27 01:44:37.288451"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 12], ["created_at", "2021-10-27 01:44:37.289513"], ["updated_at", "2021-10-27 01:44:37.289513"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 01:44:37.290733"], ["updated_at", "2021-10-27 01:44:37.290733"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/12” for 127.0.0.1 at 2021-10-26 19:44:37 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"12"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 12)[0m
Rendered applications/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.1ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.0ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:07:30.208815"], ["updated_at", "2021-10-27 02:07:30.208815"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 13], ["created_at", "2021-10-27 02:07:30.240423"], ["updated_at", "2021-10-27 02:07:30.240423"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 13], ["created_at", "2021-10-27 02:07:30.242651"], ["updated_at", "2021-10-27 02:07:30.242651"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 13], ["created_at", "2021-10-27 02:07:30.243814"], ["updated_at", "2021-10-27 02:07:30.243814"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:07:30.261242"], ["updated_at", "2021-10-27 02:07:30.261242"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 31], ["application_id", 13], ["created_at", "2021-10-27 02:07:30.273113"], ["updated_at", "2021-10-27 02:07:30.273113"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 32], ["application_id", 13], ["created_at", "2021-10-27 02:07:30.274800"], ["updated_at", "2021-10-27 02:07:30.274800"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/13” for 127.0.0.1 at 2021-10-26 20:07:30 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"13"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 13)[0m
Rendered applications/show.html.erb within layouts/application (5.4ms)
Completed 200 OK in 93ms (Views: 85.4ms | ActiveRecord: 2.2ms) Started GET “/pets/31” for 127.0.0.1 at 2021-10-26 20:07:30 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"31"}
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 31], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.2ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.7ms) Started GET “/applications/13” for 127.0.0.1 at 2021-10-26 20:07:30 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"13"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 13)[0m
Rendered applications/show.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 1.1ms) Started GET “/pets/32” for 127.0.0.1 at 2021-10-26 20:07:30 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"32"}
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 32], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.5ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:07:30.452651"], ["updated_at", "2021-10-27 02:07:30.452651"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 14], ["created_at", "2021-10-27 02:07:30.453997"], ["updated_at", "2021-10-27 02:07:30.453997"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 14], ["created_at", "2021-10-27 02:07:30.455497"], ["updated_at", "2021-10-27 02:07:30.455497"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 14], ["created_at", "2021-10-27 02:07:30.456718"], ["updated_at", "2021-10-27 02:07:30.456718"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:07:30.457588"], ["updated_at", "2021-10-27 02:07:30.457588"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/14” for 127.0.0.1 at 2021-10-26 20:07:30 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"14"}
[1m[36mApplication Load (0.5ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 14], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 14], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 14)[0m
Rendered applications/show.html.erb within layouts/application (0.9ms)
Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:07:30.464238"], ["updated_at", "2021-10-27 02:07:30.464238"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 15], ["created_at", "2021-10-27 02:07:30.465376"], ["updated_at", "2021-10-27 02:07:30.465376"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:07:30.466320"], ["updated_at", "2021-10-27 02:07:30.466320"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/15” for 127.0.0.1 at 2021-10-26 20:07:30 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"15"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 15], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 15], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 15)[0m
Rendered applications/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.6ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:07:30.472016"], ["updated_at", "2021-10-27 02:07:30.472016"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 16], ["created_at", "2021-10-27 02:07:30.473209"], ["updated_at", "2021-10-27 02:07:30.473209"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 16], ["created_at", "2021-10-27 02:07:30.474331"], ["updated_at", "2021-10-27 02:07:30.474331"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 16], ["created_at", "2021-10-27 02:07:30.475539"], ["updated_at", "2021-10-27 02:07:30.475539"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:07:30.476503"], ["updated_at", "2021-10-27 02:07:30.476503"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/16” for 127.0.0.1 at 2021-10-26 20:07:30 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"16"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 16], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 16], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 16)[0m
Rendered applications/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 1.0ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:08:14.313696"], ["updated_at", "2021-10-27 02:08:14.313696"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 17], ["created_at", "2021-10-27 02:08:14.344677"], ["updated_at", "2021-10-27 02:08:14.344677"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 17], ["created_at", "2021-10-27 02:08:14.346213"], ["updated_at", "2021-10-27 02:08:14.346213"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 17], ["created_at", "2021-10-27 02:08:14.347178"], ["updated_at", "2021-10-27 02:08:14.347178"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:08:14.362398"], ["updated_at", "2021-10-27 02:08:14.362398"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 41], ["application_id", 17], ["created_at", "2021-10-27 02:08:14.374203"], ["updated_at", "2021-10-27 02:08:14.374203"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.2ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 42], ["application_id", 17], ["created_at", "2021-10-27 02:08:14.375820"], ["updated_at", "2021-10-27 02:08:14.375820"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/17” for 127.0.0.1 at 2021-10-26 20:08:14 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"17"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 17], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 17], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (2.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 17)[0m
Rendered applications/show.html.erb within layouts/application (5.9ms)
Completed 200 OK in 90ms (Views: 81.1ms | ActiveRecord: 3.0ms) Started GET “/pets/41” for 127.0.0.1 at 2021-10-26 20:08:14 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"41"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 17], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.7ms) Started GET “/applications/17” for 127.0.0.1 at 2021-10-26 20:08:14 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"17"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 17], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 17], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 17)[0m
Rendered applications/show.html.erb within layouts/application (1.2ms)
Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.1ms) Started GET “/pets/42” for 127.0.0.1 at 2021-10-26 20:08:14 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"42"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 17], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.4ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:08:14.542048"], ["updated_at", "2021-10-27 02:08:14.542048"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 18], ["created_at", "2021-10-27 02:08:14.543453"], ["updated_at", "2021-10-27 02:08:14.543453"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 18], ["created_at", "2021-10-27 02:08:14.544670"], ["updated_at", "2021-10-27 02:08:14.544670"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 18], ["created_at", "2021-10-27 02:08:14.546062"], ["updated_at", "2021-10-27 02:08:14.546062"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:08:14.547332"], ["updated_at", "2021-10-27 02:08:14.547332"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/18” for 127.0.0.1 at 2021-10-26 20:08:14 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"18"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 18], ["LIMIT", 1]]
[1m[36mApplication Load (0.5ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 18], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 18)[0m
Rendered applications/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.8ms)
[1m[35m (0.5ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:08:14.564097"], ["updated_at", "2021-10-27 02:08:14.564097"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 19], ["created_at", "2021-10-27 02:08:14.567362"], ["updated_at", "2021-10-27 02:08:14.567362"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:08:14.568835"], ["updated_at", "2021-10-27 02:08:14.568835"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/19” for 127.0.0.1 at 2021-10-26 20:08:14 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"19"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 19], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 19], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 19)[0m
Rendered applications/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.8ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:08:14.582218"], ["updated_at", "2021-10-27 02:08:14.582218"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 20], ["created_at", "2021-10-27 02:08:14.583891"], ["updated_at", "2021-10-27 02:08:14.583891"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 20], ["created_at", "2021-10-27 02:08:14.585142"], ["updated_at", "2021-10-27 02:08:14.585142"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 20], ["created_at", "2021-10-27 02:08:14.586388"], ["updated_at", "2021-10-27 02:08:14.586388"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:08:14.587448"], ["updated_at", "2021-10-27 02:08:14.587448"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/20” for 127.0.0.1 at 2021-10-26 20:08:14 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"20"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 20], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 20], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 20)[0m
Rendered applications/show.html.erb within layouts/application (1.2ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.9ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:08:51.194322"], ["updated_at", "2021-10-27 02:08:51.194322"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 21], ["created_at", "2021-10-27 02:08:51.228069"], ["updated_at", "2021-10-27 02:08:51.228069"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 21], ["created_at", "2021-10-27 02:08:51.230277"], ["updated_at", "2021-10-27 02:08:51.230277"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 21], ["created_at", "2021-10-27 02:08:51.231505"], ["updated_at", "2021-10-27 02:08:51.231505"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:08:51.247168"], ["updated_at", "2021-10-27 02:08:51.247168"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.7ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 51], ["application_id", 21], ["created_at", "2021-10-27 02:08:51.264485"], ["updated_at", "2021-10-27 02:08:51.264485"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.2ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 52], ["application_id", 21], ["created_at", "2021-10-27 02:08:51.266231"], ["updated_at", "2021-10-27 02:08:51.266231"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/21” for 127.0.0.1 at 2021-10-26 20:08:51 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"21"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 21], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 21], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (2.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 21)[0m
Rendered applications/show.html.erb within layouts/application (6.0ms)
Completed 200 OK in 90ms (Views: 82.0ms | ActiveRecord: 2.7ms) Started GET “/pets/51” for 127.0.0.1 at 2021-10-26 20:08:51 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"51"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 51], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 21], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.6ms) Started GET “/applications/21” for 127.0.0.1 at 2021-10-26 20:08:51 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"21"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 21], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 21], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 21)[0m
Rendered applications/show.html.erb within layouts/application (1.8ms)
Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 1.7ms) Started GET “/pets/52” for 127.0.0.1 at 2021-10-26 20:08:51 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 52], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 21], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.3ms)
[1m[35m (0.5ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:08:51.432728"], ["updated_at", "2021-10-27 02:08:51.432728"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 22], ["created_at", "2021-10-27 02:08:51.434412"], ["updated_at", "2021-10-27 02:08:51.434412"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 22], ["created_at", "2021-10-27 02:08:51.435975"], ["updated_at", "2021-10-27 02:08:51.435975"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 22], ["created_at", "2021-10-27 02:08:51.437382"], ["updated_at", "2021-10-27 02:08:51.437382"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:08:51.438890"], ["updated_at", "2021-10-27 02:08:51.438890"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/22” for 127.0.0.1 at 2021-10-26 20:08:51 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"22"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 22], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 22], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 22)[0m
Rendered applications/show.html.erb within layouts/application (4.5ms)
Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.9ms) Started GET “/applications/22?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:08:51 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"22"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 22], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 22], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 22)[0m
[1m[36mPet Load (1.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (6.5ms)
Completed 200 OK in 13ms (Views: 5.6ms | ActiveRecord: 3.0ms)
[1m[35m (4.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.3ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:08:51.505470"], ["updated_at", "2021-10-27 02:08:51.505470"]]
[1m[35m (0.5ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.9ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 23], ["created_at", "2021-10-27 02:08:51.509822"], ["updated_at", "2021-10-27 02:08:51.509822"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (4.8ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:08:51.513229"], ["updated_at", "2021-10-27 02:08:51.513229"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/23” for 127.0.0.1 at 2021-10-26 20:08:51 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"23"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 23], ["LIMIT", 1]]
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 23], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (3.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 23)[0m
Rendered applications/show.html.erb within layouts/application (5.7ms)
Completed 200 OK in 13ms (Views: 4.1ms | ActiveRecord: 4.7ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:08:51.544141"], ["updated_at", "2021-10-27 02:08:51.544141"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 24], ["created_at", "2021-10-27 02:08:51.547831"], ["updated_at", "2021-10-27 02:08:51.547831"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.9ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 24], ["created_at", "2021-10-27 02:08:51.555497"], ["updated_at", "2021-10-27 02:08:51.555497"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 24], ["created_at", "2021-10-27 02:08:51.559267"], ["updated_at", "2021-10-27 02:08:51.559267"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:08:51.562625"], ["updated_at", "2021-10-27 02:08:51.562625"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/24” for 127.0.0.1 at 2021-10-26 20:08:51 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"24"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 24], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 24], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 24)[0m
Rendered applications/show.html.erb within layouts/application (1.7ms)
Completed 200 OK in 5ms (Views: 2.3ms | ActiveRecord: 1.4ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:09:40.611727"], ["updated_at", "2021-10-27 02:09:40.611727"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 25], ["created_at", "2021-10-27 02:09:40.644111"], ["updated_at", "2021-10-27 02:09:40.644111"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 25], ["created_at", "2021-10-27 02:09:40.646083"], ["updated_at", "2021-10-27 02:09:40.646083"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 25], ["created_at", "2021-10-27 02:09:40.647431"], ["updated_at", "2021-10-27 02:09:40.647431"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:09:40.661732"], ["updated_at", "2021-10-27 02:09:40.661732"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 61], ["application_id", 25], ["created_at", "2021-10-27 02:09:40.673575"], ["updated_at", "2021-10-27 02:09:40.673575"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.2ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 62], ["application_id", 25], ["created_at", "2021-10-27 02:09:40.675199"], ["updated_at", "2021-10-27 02:09:40.675199"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/25” for 127.0.0.1 at 2021-10-26 20:09:40 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"25"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 25], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 25], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 25)[0m
Rendered applications/show.html.erb within layouts/application (5.4ms)
Completed 200 OK in 90ms (Views: 81.7ms | ActiveRecord: 2.4ms) Started GET “/pets/61” for 127.0.0.1 at 2021-10-26 20:09:40 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"61"}
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 25], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.6ms) Started GET “/applications/25” for 127.0.0.1 at 2021-10-26 20:09:40 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"25"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 25], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 25], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 25)[0m
Rendered applications/show.html.erb within layouts/application (1.2ms)
Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.3ms) Started GET “/pets/62” for 127.0.0.1 at 2021-10-26 20:09:40 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"62"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 62], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 25], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.4ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:09:40.841024"], ["updated_at", "2021-10-27 02:09:40.841024"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 26], ["created_at", "2021-10-27 02:09:40.842418"], ["updated_at", "2021-10-27 02:09:40.842418"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 26], ["created_at", "2021-10-27 02:09:40.843563"], ["updated_at", "2021-10-27 02:09:40.843563"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 26], ["created_at", "2021-10-27 02:09:40.844600"], ["updated_at", "2021-10-27 02:09:40.844600"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:09:40.845854"], ["updated_at", "2021-10-27 02:09:40.845854"]]
[1m[35m (0.4ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/26” for 127.0.0.1 at 2021-10-26 20:09:40 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"26"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 26], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 26], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 26)[0m
Rendered applications/show.html.erb within layouts/application (4.0ms)
Completed 200 OK in 6ms (Views: 3.5ms | ActiveRecord: 1.7ms) Started GET “/applications/26?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:09:40 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"26"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 26], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 26], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 26)[0m
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (4.0ms)
Completed 200 OK in 10ms (Views: 4.4ms | ActiveRecord: 1.6ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:09:40.891837"], ["updated_at", "2021-10-27 02:09:40.891837"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 27], ["created_at", "2021-10-27 02:09:40.893631"], ["updated_at", "2021-10-27 02:09:40.893631"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:09:40.895067"], ["updated_at", "2021-10-27 02:09:40.895067"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/27” for 127.0.0.1 at 2021-10-26 20:09:40 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"27"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 27], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 27], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 27)[0m
Rendered applications/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 1.0ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:09:40.909450"], ["updated_at", "2021-10-27 02:09:40.909450"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 28], ["created_at", "2021-10-27 02:09:40.911345"], ["updated_at", "2021-10-27 02:09:40.911345"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 28], ["created_at", "2021-10-27 02:09:40.913340"], ["updated_at", "2021-10-27 02:09:40.913340"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (4.4ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 28], ["created_at", "2021-10-27 02:09:40.920122"], ["updated_at", "2021-10-27 02:09:40.920122"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:09:40.921908"], ["updated_at", "2021-10-27 02:09:40.921908"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/28” for 127.0.0.1 at 2021-10-26 20:09:40 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"28"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 28], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 28], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (4.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 28)[0m
Rendered applications/show.html.erb within layouts/application (6.4ms)
Completed 200 OK in 9ms (Views: 3.2ms | ActiveRecord: 5.2ms) Started GET “/applications/28?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:09:40 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"28"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 28], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 28], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 28)[0m
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (3.6ms)
Completed 200 OK in 6ms (Views: 3.0ms | ActiveRecord: 2.0ms)
[1m[35m (0.5ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:10:12.386103"], ["updated_at", "2021-10-27 02:10:12.386103"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 29], ["created_at", "2021-10-27 02:10:12.419112"], ["updated_at", "2021-10-27 02:10:12.419112"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 29], ["created_at", "2021-10-27 02:10:12.421464"], ["updated_at", "2021-10-27 02:10:12.421464"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 29], ["created_at", "2021-10-27 02:10:12.422757"], ["updated_at", "2021-10-27 02:10:12.422757"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:10:12.441737"], ["updated_at", "2021-10-27 02:10:12.441737"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 71], ["application_id", 29], ["created_at", "2021-10-27 02:10:12.459435"], ["updated_at", "2021-10-27 02:10:12.459435"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 72], ["application_id", 29], ["created_at", "2021-10-27 02:10:12.461861"], ["updated_at", "2021-10-27 02:10:12.461861"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/29” for 127.0.0.1 at 2021-10-26 20:10:12 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"29"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 29], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 29], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (2.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 29)[0m
Rendered applications/show.html.erb within layouts/application (6.3ms)
Completed 200 OK in 91ms (Views: 82.1ms | ActiveRecord: 3.1ms) Started GET “/pets/71” for 127.0.0.1 at 2021-10-26 20:10:12 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"71"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 29], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.6ms) Started GET “/applications/29” for 127.0.0.1 at 2021-10-26 20:10:12 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"29"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 29], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 29], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 29)[0m
Rendered applications/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 1.3ms) Started GET “/pets/72” for 127.0.0.1 at 2021-10-26 20:10:12 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"72"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 72], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 29], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.3ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:10:12.631561"], ["updated_at", "2021-10-27 02:10:12.631561"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 30], ["created_at", "2021-10-27 02:10:12.633127"], ["updated_at", "2021-10-27 02:10:12.633127"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 30], ["created_at", "2021-10-27 02:10:12.634689"], ["updated_at", "2021-10-27 02:10:12.634689"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 30], ["created_at", "2021-10-27 02:10:12.636074"], ["updated_at", "2021-10-27 02:10:12.636074"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:10:12.637361"], ["updated_at", "2021-10-27 02:10:12.637361"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/30” for 127.0.0.1 at 2021-10-26 20:10:12 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"30"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 30], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 30], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 30)[0m
Rendered applications/show.html.erb within layouts/application (3.6ms)
Completed 200 OK in 5ms (Views: 3.6ms | ActiveRecord: 0.9ms) Started GET “/applications/30?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:10:12 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"30"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 30], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 30], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 30)[0m
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (3.1ms)
Completed 200 OK in 5ms (Views: 1.9ms | ActiveRecord: 2.1ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:10:12.670575"], ["updated_at", "2021-10-27 02:10:12.670575"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 31], ["created_at", "2021-10-27 02:10:12.674073"], ["updated_at", "2021-10-27 02:10:12.674073"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:10:12.675107"], ["updated_at", "2021-10-27 02:10:12.675107"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/31” for 127.0.0.1 at 2021-10-26 20:10:12 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"31"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 31], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 31], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 31)[0m
Rendered applications/show.html.erb within layouts/application (1.9ms)
Completed 200 OK in 5ms (Views: 2.4ms | ActiveRecord: 1.5ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:10:12.687756"], ["updated_at", "2021-10-27 02:10:12.687756"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 32], ["created_at", "2021-10-27 02:10:12.690129"], ["updated_at", "2021-10-27 02:10:12.690129"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 32], ["created_at", "2021-10-27 02:10:12.692183"], ["updated_at", "2021-10-27 02:10:12.692183"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 32], ["created_at", "2021-10-27 02:10:12.694113"], ["updated_at", "2021-10-27 02:10:12.694113"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:10:12.695650"], ["updated_at", "2021-10-27 02:10:12.695650"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/32” for 127.0.0.1 at 2021-10-26 20:10:12 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"32"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 32], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 32], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 32)[0m
Rendered applications/show.html.erb within layouts/application (1.8ms)
Completed 200 OK in 4ms (Views: 2.0ms | ActiveRecord: 1.0ms) Started GET “/applications/32?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-26 20:10:12 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"32"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 32], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 32], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 32)[0m
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')[0m
Rendered applications/show.html.erb within layouts/application (2.8ms)
Completed 200 OK in 5ms (Views: 1.8ms | ActiveRecord: 2.1ms) Started POST “/application_pets?app_id=32&pet_id=80” for 127.0.0.1 at 2021-10-26 20:10:12 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"32", "pet_id"=>"80"}
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 32], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 80], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.8ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 80], ["application_id", 32], ["created_at", "2021-10-27 02:10:12.730606"], ["updated_at", "2021-10-27 02:10:12.730606"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/32 Completed 302 Found in 4ms (ActiveRecord: 1.5ms) Started GET “/applications/32” for 127.0.0.1 at 2021-10-26 20:10:12 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"32"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 32], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 32], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 32)[0m
Rendered applications/show.html.erb within layouts/application (1.8ms)
Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 1.0ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:10:39.357054"], ["updated_at", "2021-10-27 02:10:39.357054"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 33], ["created_at", "2021-10-27 02:10:39.382759"], ["updated_at", "2021-10-27 02:10:39.382759"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 33], ["created_at", "2021-10-27 02:10:39.384488"], ["updated_at", "2021-10-27 02:10:39.384488"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 33], ["created_at", "2021-10-27 02:10:39.385618"], ["updated_at", "2021-10-27 02:10:39.385618"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.7ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:10:39.410717"], ["updated_at", "2021-10-27 02:10:39.410717"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 81], ["application_id", 33], ["created_at", "2021-10-27 02:10:39.438851"], ["updated_at", "2021-10-27 02:10:39.438851"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 82], ["application_id", 33], ["created_at", "2021-10-27 02:10:39.442943"], ["updated_at", "2021-10-27 02:10:39.442943"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/33” for 127.0.0.1 at 2021-10-26 20:10:39 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"33"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 33], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 33], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (2.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 33)[0m
Rendered applications/show.html.erb within layouts/application (9.5ms)
Completed 200 OK in 101ms (Views: 89.9ms | ActiveRecord: 4.5ms) Started GET “/pets/81” for 127.0.0.1 at 2021-10-26 20:10:39 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"81"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 81], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 33], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.5ms)
Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 0.6ms) Started GET “/applications/33” for 127.0.0.1 at 2021-10-26 20:10:39 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"33"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 33], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 33], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 33)[0m
Rendered applications/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 1.1ms) Started GET “/pets/82” for 127.0.0.1 at 2021-10-26 20:10:39 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"82"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 82], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 33], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.3ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:10:39.610030"], ["updated_at", "2021-10-27 02:10:39.610030"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 34], ["created_at", "2021-10-27 02:10:39.611725"], ["updated_at", "2021-10-27 02:10:39.611725"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 34], ["created_at", "2021-10-27 02:10:39.613290"], ["updated_at", "2021-10-27 02:10:39.613290"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 34], ["created_at", "2021-10-27 02:10:39.614669"], ["updated_at", "2021-10-27 02:10:39.614669"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:10:39.616048"], ["updated_at", "2021-10-27 02:10:39.616048"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/34” for 127.0.0.1 at 2021-10-26 20:10:39 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"34"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 34], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 34], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 34)[0m
Rendered applications/show.html.erb within layouts/application (4.0ms)
Completed 200 OK in 6ms (Views: 3.5ms | ActiveRecord: 1.7ms) Started GET “/applications/34?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:10:39 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"34"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 34], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 34], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 34)[0m
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (3.0ms)
Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 2.1ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:10:39.641427"], ["updated_at", "2021-10-27 02:10:39.641427"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 35], ["created_at", "2021-10-27 02:10:39.642795"], ["updated_at", "2021-10-27 02:10:39.642795"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:10:39.643855"], ["updated_at", "2021-10-27 02:10:39.643855"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/35” for 127.0.0.1 at 2021-10-26 20:10:39 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"35"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 35], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 35], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 35)[0m
Rendered applications/show.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 1.1ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:10:39.650326"], ["updated_at", "2021-10-27 02:10:39.650326"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 36], ["created_at", "2021-10-27 02:10:39.651702"], ["updated_at", "2021-10-27 02:10:39.651702"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 36], ["created_at", "2021-10-27 02:10:39.653027"], ["updated_at", "2021-10-27 02:10:39.653027"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 36], ["created_at", "2021-10-27 02:10:39.654310"], ["updated_at", "2021-10-27 02:10:39.654310"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:10:39.655772"], ["updated_at", "2021-10-27 02:10:39.655772"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/36” for 127.0.0.1 at 2021-10-26 20:10:39 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"36"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 36)[0m
Rendered applications/show.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.7ms) Started GET “/applications/36?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-26 20:10:39 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"36"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 36)[0m
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')[0m
Rendered applications/show.html.erb within layouts/application (2.1ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 1.6ms) Started POST “/application_pets?app_id=36&pet_id=90” for 127.0.0.1 at 2021-10-26 20:10:39 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"36", "pet_id"=>"90"}
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 90], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.9ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 90], ["application_id", 36], ["created_at", "2021-10-27 02:10:39.674435"], ["updated_at", "2021-10-27 02:10:39.674435"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/36 Completed 302 Found in 4ms (ActiveRecord: 1.8ms) Started GET “/applications/36” for 127.0.0.1 at 2021-10-26 20:10:39 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"36"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 36)[0m
Rendered applications/show.html.erb within layouts/application (1.6ms)
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:11:25.045810"], ["updated_at", "2021-10-27 02:11:25.045810"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 37], ["created_at", "2021-10-27 02:11:25.078839"], ["updated_at", "2021-10-27 02:11:25.078839"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 37], ["created_at", "2021-10-27 02:11:25.081157"], ["updated_at", "2021-10-27 02:11:25.081157"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 37], ["created_at", "2021-10-27 02:11:25.082466"], ["updated_at", "2021-10-27 02:11:25.082466"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.7ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:11:25.098501"], ["updated_at", "2021-10-27 02:11:25.098501"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.7ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 91], ["application_id", 37], ["created_at", "2021-10-27 02:11:25.116685"], ["updated_at", "2021-10-27 02:11:25.116685"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.2ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 92], ["application_id", 37], ["created_at", "2021-10-27 02:11:25.118439"], ["updated_at", "2021-10-27 02:11:25.118439"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/37” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"37"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 37], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 37], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 37)[0m
Rendered applications/show.html.erb within layouts/application (5.6ms)
Completed 200 OK in 90ms (Views: 82.2ms | ActiveRecord: 2.4ms) Started GET “/pets/91” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"91"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 91], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 37], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.7ms) Started GET “/applications/37” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"37"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 37], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 37], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 37)[0m
Rendered applications/show.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 1.0ms) Started GET “/pets/92” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"92"}
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 92], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 37], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.5ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:11:25.284803"], ["updated_at", "2021-10-27 02:11:25.284803"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 38], ["created_at", "2021-10-27 02:11:25.286372"], ["updated_at", "2021-10-27 02:11:25.286372"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 38], ["created_at", "2021-10-27 02:11:25.287654"], ["updated_at", "2021-10-27 02:11:25.287654"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 38], ["created_at", "2021-10-27 02:11:25.288890"], ["updated_at", "2021-10-27 02:11:25.288890"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:11:25.290081"], ["updated_at", "2021-10-27 02:11:25.290081"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/38” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"38"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 38)[0m
Rendered applications/show.html.erb within layouts/application (3.6ms)
Completed 200 OK in 5ms (Views: 3.6ms | ActiveRecord: 1.0ms) Started GET “/applications/38?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"38"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 38)[0m
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (3.0ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 2.1ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.4ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:11:25.323863"], ["updated_at", "2021-10-27 02:11:25.323863"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 39], ["created_at", "2021-10-27 02:11:25.326455"], ["updated_at", "2021-10-27 02:11:25.326455"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:11:25.328006"], ["updated_at", "2021-10-27 02:11:25.328006"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/39” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"39"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 39], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 39], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 39)[0m
Rendered applications/show.html.erb within layouts/application (2.7ms)
Completed 200 OK in 5ms (Views: 2.6ms | ActiveRecord: 1.5ms) Started GET “/applications/39?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"39"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 39], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 39], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 39)[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (2.5ms)
Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 1.6ms) Started POST “/application_pets?app_id=39&pet_id=97” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"39", "pet_id"=>"97"}
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 39], ["LIMIT", 1]]
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 97], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.9ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 97], ["application_id", 39], ["created_at", "2021-10-27 02:11:25.361555"], ["updated_at", "2021-10-27 02:11:25.361555"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/39 Completed 302 Found in 4ms (ActiveRecord: 1.8ms) Started GET “/applications/39” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"39"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 39], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 39], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 39)[0m
Rendered applications/show.html.erb within layouts/application (1.9ms)
Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 1.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:11:25.371665"], ["updated_at", "2021-10-27 02:11:25.371665"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 40], ["created_at", "2021-10-27 02:11:25.373647"], ["updated_at", "2021-10-27 02:11:25.373647"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 40], ["created_at", "2021-10-27 02:11:25.375475"], ["updated_at", "2021-10-27 02:11:25.375475"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 40], ["created_at", "2021-10-27 02:11:25.377190"], ["updated_at", "2021-10-27 02:11:25.377190"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:11:25.379000"], ["updated_at", "2021-10-27 02:11:25.379000"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/40” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"40"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mApplication Load (0.7ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 40)[0m
Rendered applications/show.html.erb within layouts/application (2.2ms)
Completed 200 OK in 5ms (Views: 2.2ms | ActiveRecord: 1.9ms) Started GET “/applications/40?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"40"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 40)[0m
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')[0m
Rendered applications/show.html.erb within layouts/application (2.5ms)
Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 1.7ms) Started POST “/application_pets?app_id=40&pet_id=100” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"40", "pet_id"=>"100"}
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 100], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 100], ["application_id", 40], ["created_at", "2021-10-27 02:11:25.406689"], ["updated_at", "2021-10-27 02:11:25.406689"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/40 Completed 302 Found in 3ms (ActiveRecord: 1.2ms) Started GET “/applications/40” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"40"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 40)[0m
Rendered applications/show.html.erb within layouts/application (2.0ms)
Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 1.2ms) Started PATCH “/applications/40” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationsController#update as HTML
Parameters: {"utf8"=>"✓", "why"=>"I love dogs", "commit"=>"Submit Application", "id"=>"40"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit, :id
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mApplication Update (0.6ms)[0m [1m[33mUPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3[0m [["application_status", "Pending"], ["updated_at", "2021-10-27 02:11:25.424544"], ["id", 40]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/40 Completed 302 Found in 2ms (ActiveRecord: 1.1ms) Started GET “/applications/40” for 127.0.0.1 at 2021-10-26 20:11:25 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"40"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 40)[0m
Rendered applications/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:13:03.732617"], ["updated_at", "2021-10-27 02:13:03.732617"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 41], ["created_at", "2021-10-27 02:13:03.762686"], ["updated_at", "2021-10-27 02:13:03.762686"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 41], ["created_at", "2021-10-27 02:13:03.764386"], ["updated_at", "2021-10-27 02:13:03.764386"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 41], ["created_at", "2021-10-27 02:13:03.765404"], ["updated_at", "2021-10-27 02:13:03.765404"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:13:03.776013"], ["updated_at", "2021-10-27 02:13:03.776013"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 101], ["application_id", 41], ["created_at", "2021-10-27 02:13:03.787429"], ["updated_at", "2021-10-27 02:13:03.787429"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 102], ["application_id", 41], ["created_at", "2021-10-27 02:13:03.790192"], ["updated_at", "2021-10-27 02:13:03.790192"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/41” for 127.0.0.1 at 2021-10-26 20:13:03 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"41"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (2.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 41)[0m
Rendered applications/show.html.erb within layouts/application (5.7ms)
Completed 200 OK in 89ms (Views: 80.5ms | ActiveRecord: 2.8ms) Started GET “/pets/101” for 127.0.0.1 at 2021-10-26 20:13:03 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"101"}
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 101], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.7ms) Started GET “/applications/41” for 127.0.0.1 at 2021-10-26 20:13:03 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"41"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 41)[0m
Rendered applications/show.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 1.2ms) Started GET “/pets/102” for 127.0.0.1 at 2021-10-26 20:13:03 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"102"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 102], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.6ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:13:03.955415"], ["updated_at", "2021-10-27 02:13:03.955415"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 42], ["created_at", "2021-10-27 02:13:03.957123"], ["updated_at", "2021-10-27 02:13:03.957123"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 42], ["created_at", "2021-10-27 02:13:03.958680"], ["updated_at", "2021-10-27 02:13:03.958680"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 42], ["created_at", "2021-10-27 02:13:03.960096"], ["updated_at", "2021-10-27 02:13:03.960096"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:13:03.961416"], ["updated_at", "2021-10-27 02:13:03.961416"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/42” for 127.0.0.1 at 2021-10-26 20:13:03 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"42"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 42)[0m
Rendered applications/show.html.erb within layouts/application (4.1ms)
Completed 200 OK in 6ms (Views: 3.7ms | ActiveRecord: 1.6ms) Started GET “/applications/42?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:13:03 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"42"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 42)[0m
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (3.1ms)
Completed 200 OK in 5ms (Views: 1.8ms | ActiveRecord: 2.1ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:13:03.996393"], ["updated_at", "2021-10-27 02:13:03.996393"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 43], ["created_at", "2021-10-27 02:13:03.998612"], ["updated_at", "2021-10-27 02:13:03.998612"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:13:04.000542"], ["updated_at", "2021-10-27 02:13:04.000542"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/43” for 127.0.0.1 at 2021-10-26 20:13:04 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"43"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 43)[0m
Rendered applications/show.html.erb within layouts/application (3.0ms)
Completed 200 OK in 6ms (Views: 3.6ms | ActiveRecord: 1.1ms) Started GET “/applications/43?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:13:04 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"43"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 43)[0m
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (6.1ms)
Completed 200 OK in 9ms (Views: 5.7ms | ActiveRecord: 2.1ms) Started POST “/application_pets?app_id=43&pet_id=107” for 127.0.0.1 at 2021-10-26 20:13:04 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"43", "pet_id"=>"107"}
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 107], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.8ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 107], ["application_id", 43], ["created_at", "2021-10-27 02:13:04.038049"], ["updated_at", "2021-10-27 02:13:04.038049"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/43 Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET “/applications/43” for 127.0.0.1 at 2021-10-26 20:13:04 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"43"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 43)[0m
Rendered applications/show.html.erb within layouts/application (2.0ms)
Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 1.0ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:13:04.047658"], ["updated_at", "2021-10-27 02:13:04.047658"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 44], ["created_at", "2021-10-27 02:13:04.049471"], ["updated_at", "2021-10-27 02:13:04.049471"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 44], ["created_at", "2021-10-27 02:13:04.051111"], ["updated_at", "2021-10-27 02:13:04.051111"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 44], ["created_at", "2021-10-27 02:13:04.052261"], ["updated_at", "2021-10-27 02:13:04.052261"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:13:04.053298"], ["updated_at", "2021-10-27 02:13:04.053298"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/44” for 127.0.0.1 at 2021-10-26 20:13:04 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"44"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 44)[0m
Rendered applications/show.html.erb within layouts/application (1.9ms)
Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 1.6ms) Started GET “/applications/44?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-26 20:13:04 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"44"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 44)[0m
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')[0m
Rendered applications/show.html.erb within layouts/application (3.6ms)
Completed 200 OK in 6ms (Views: 2.9ms | ActiveRecord: 2.1ms) Started POST “/application_pets?app_id=44&pet_id=110” for 127.0.0.1 at 2021-10-26 20:13:04 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"44", "pet_id"=>"110"}
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 110], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.9ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 110], ["application_id", 44], ["created_at", "2021-10-27 02:13:04.079611"], ["updated_at", "2021-10-27 02:13:04.079611"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/44 Completed 302 Found in 4ms (ActiveRecord: 1.7ms) Started GET “/applications/44” for 127.0.0.1 at 2021-10-26 20:13:04 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"44"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 44)[0m
Rendered applications/show.html.erb within layouts/application (2.4ms)
Completed 200 OK in 4ms (Views: 2.0ms | ActiveRecord: 1.2ms) Started PATCH “/applications/44” for 127.0.0.1 at 2021-10-26 20:13:04 -0600 Processing by ApplicationsController#update as HTML
Parameters: {"utf8"=>"✓", "why"=>"I love dogs", "commit"=>"Submit Application", "id"=>"44"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit, :id
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mApplication Update (0.8ms)[0m [1m[33mUPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3[0m [["application_status", "Pending"], ["updated_at", "2021-10-27 02:13:04.099227"], ["id", 44]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/44 Completed 302 Found in 3ms (ActiveRecord: 1.3ms) Started GET “/applications/44” for 127.0.0.1 at 2021-10-26 20:13:04 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"44"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 44)[0m
Rendered applications/show.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.7ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.0ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:13:29.704127"], ["updated_at", "2021-10-27 02:13:29.704127"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 45], ["created_at", "2021-10-27 02:13:29.745233"], ["updated_at", "2021-10-27 02:13:29.745233"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 45], ["created_at", "2021-10-27 02:13:29.748551"], ["updated_at", "2021-10-27 02:13:29.748551"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 45], ["created_at", "2021-10-27 02:13:29.750583"], ["updated_at", "2021-10-27 02:13:29.750583"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.7ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:13:29.780595"], ["updated_at", "2021-10-27 02:13:29.780595"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (2.0ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 111], ["application_id", 45], ["created_at", "2021-10-27 02:13:29.800463"], ["updated_at", "2021-10-27 02:13:29.800463"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 112], ["application_id", 45], ["created_at", "2021-10-27 02:13:29.803677"], ["updated_at", "2021-10-27 02:13:29.803677"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/45” for 127.0.0.1 at 2021-10-26 20:13:29 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"45"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (2.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 45)[0m
Rendered applications/show.html.erb within layouts/application (6.4ms)
Completed 200 OK in 88ms (Views: 78.5ms | ActiveRecord: 3.6ms) Started GET “/pets/111” for 127.0.0.1 at 2021-10-26 20:13:29 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"111"}
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 111], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.2ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.7ms) Started GET “/applications/45” for 127.0.0.1 at 2021-10-26 20:13:29 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"45"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 45)[0m
Rendered applications/show.html.erb within layouts/application (1.2ms)
Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 1.3ms) Started GET “/pets/112” for 127.0.0.1 at 2021-10-26 20:13:29 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"112"}
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 112], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.7ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:13:29.951471"], ["updated_at", "2021-10-27 02:13:29.951471"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 46], ["created_at", "2021-10-27 02:13:29.953166"], ["updated_at", "2021-10-27 02:13:29.953166"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 46], ["created_at", "2021-10-27 02:13:29.954739"], ["updated_at", "2021-10-27 02:13:29.954739"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 46], ["created_at", "2021-10-27 02:13:29.956296"], ["updated_at", "2021-10-27 02:13:29.956296"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:13:29.957676"], ["updated_at", "2021-10-27 02:13:29.957676"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/46” for 127.0.0.1 at 2021-10-26 20:13:29 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"46"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 46)[0m
Rendered applications/show.html.erb within layouts/application (4.0ms)
Completed 200 OK in 6ms (Views: 3.5ms | ActiveRecord: 1.6ms) Started GET “/applications/46?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:13:29 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"46"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 46)[0m
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (3.1ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 2.1ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:13:29.983115"], ["updated_at", "2021-10-27 02:13:29.983115"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 47], ["created_at", "2021-10-27 02:13:29.984645"], ["updated_at", "2021-10-27 02:13:29.984645"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:13:29.985879"], ["updated_at", "2021-10-27 02:13:29.985879"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/47” for 127.0.0.1 at 2021-10-26 20:13:29 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"47"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 47)[0m
Rendered applications/show.html.erb within layouts/application (1.7ms)
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 1.3ms) Started GET “/applications/47?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:13:29 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"47"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 47)[0m
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (1.9ms)
Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 1.2ms) Started POST “/application_pets?app_id=47&pet_id=117” for 127.0.0.1 at 2021-10-26 20:13:30 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"47", "pet_id"=>"117"}
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 117], ["LIMIT", 1]]
[1m[36mApplicationPet Create (1.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 117], ["application_id", 47], ["created_at", "2021-10-27 02:13:30.005439"], ["updated_at", "2021-10-27 02:13:30.005439"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/47 Completed 302 Found in 4ms (ActiveRecord: 2.2ms) Started GET “/applications/47” for 127.0.0.1 at 2021-10-26 20:13:30 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"47"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 47)[0m
Rendered applications/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.9ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:13:30.013731"], ["updated_at", "2021-10-27 02:13:30.013731"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 48], ["created_at", "2021-10-27 02:13:30.015288"], ["updated_at", "2021-10-27 02:13:30.015288"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 48], ["created_at", "2021-10-27 02:13:30.016682"], ["updated_at", "2021-10-27 02:13:30.016682"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 48], ["created_at", "2021-10-27 02:13:30.017972"], ["updated_at", "2021-10-27 02:13:30.017972"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:13:30.019140"], ["updated_at", "2021-10-27 02:13:30.019140"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/48” for 127.0.0.1 at 2021-10-26 20:13:30 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"48"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 48)[0m
Rendered applications/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.9ms) Started GET “/applications/48?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-26 20:13:30 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"48"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 48)[0m
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')[0m
Rendered applications/show.html.erb within layouts/application (1.9ms)
Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 1.3ms) Started POST “/application_pets?app_id=48&pet_id=120” for 127.0.0.1 at 2021-10-26 20:13:30 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"48", "pet_id"=>"120"}
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 120], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.9ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 120], ["application_id", 48], ["created_at", "2021-10-27 02:13:30.048483"], ["updated_at", "2021-10-27 02:13:30.048483"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/48 Completed 302 Found in 3ms (ActiveRecord: 1.6ms) Started GET “/applications/48” for 127.0.0.1 at 2021-10-26 20:13:30 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"48"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 48)[0m
Rendered applications/show.html.erb within layouts/application (1.6ms)
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.4ms) Started PATCH “/applications/48” for 127.0.0.1 at 2021-10-26 20:13:30 -0600 Processing by ApplicationsController#update as HTML
Parameters: {"utf8"=>"✓", "why"=>"I love dogs", "commit"=>"Submit Application", "id"=>"48"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit, :id
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mApplication Update (0.5ms)[0m [1m[33mUPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3[0m [["application_status", "Pending"], ["updated_at", "2021-10-27 02:13:30.058743"], ["id", 48]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/48 Completed 302 Found in 2ms (ActiveRecord: 0.8ms) Started GET “/applications/48” for 127.0.0.1 at 2021-10-26 20:13:30 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"48"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 48)[0m
Rendered applications/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.3ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:13:48.716413"], ["updated_at", "2021-10-27 02:13:48.716413"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 49], ["created_at", "2021-10-27 02:13:48.748855"], ["updated_at", "2021-10-27 02:13:48.748855"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 49], ["created_at", "2021-10-27 02:13:48.751372"], ["updated_at", "2021-10-27 02:13:48.751372"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 49], ["created_at", "2021-10-27 02:13:48.752832"], ["updated_at", "2021-10-27 02:13:48.752832"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.7ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:13:48.770344"], ["updated_at", "2021-10-27 02:13:48.770344"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.8ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 121], ["application_id", 49], ["created_at", "2021-10-27 02:13:48.789175"], ["updated_at", "2021-10-27 02:13:48.789175"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 122], ["application_id", 49], ["created_at", "2021-10-27 02:13:48.792178"], ["updated_at", "2021-10-27 02:13:48.792178"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/49” for 127.0.0.1 at 2021-10-26 20:13:48 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"49"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 49)[0m
Rendered applications/show.html.erb within layouts/application (5.3ms)
Completed 200 OK in 91ms (Views: 83.4ms | ActiveRecord: 2.1ms) Started GET “/pets/121” for 127.0.0.1 at 2021-10-26 20:13:48 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"121"}
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 121], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.2ms)
Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.7ms) Started GET “/applications/49” for 127.0.0.1 at 2021-10-26 20:13:48 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"49"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 49)[0m
Rendered applications/show.html.erb within layouts/application (1.0ms)
Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.2ms) Started GET “/pets/122” for 127.0.0.1 at 2021-10-26 20:13:48 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"122"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 122], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.3ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:13:48.960992"], ["updated_at", "2021-10-27 02:13:48.960992"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 50], ["created_at", "2021-10-27 02:13:48.962751"], ["updated_at", "2021-10-27 02:13:48.962751"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 50], ["created_at", "2021-10-27 02:13:48.963913"], ["updated_at", "2021-10-27 02:13:48.963913"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 50], ["created_at", "2021-10-27 02:13:48.965300"], ["updated_at", "2021-10-27 02:13:48.965300"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:13:48.966588"], ["updated_at", "2021-10-27 02:13:48.966588"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/50” for 127.0.0.1 at 2021-10-26 20:13:48 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"50"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 50], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 50], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 50)[0m
Rendered applications/show.html.erb within layouts/application (3.6ms)
Completed 200 OK in 5ms (Views: 3.5ms | ActiveRecord: 1.3ms) Started GET “/applications/50?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:13:48 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"50"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 50], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 50], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 50)[0m
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (2.3ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 1.3ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:13:49.001615"], ["updated_at", "2021-10-27 02:13:49.001615"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 51], ["created_at", "2021-10-27 02:13:49.003849"], ["updated_at", "2021-10-27 02:13:49.003849"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:13:49.005652"], ["updated_at", "2021-10-27 02:13:49.005652"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/51” for 127.0.0.1 at 2021-10-26 20:13:49 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"51"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 51], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 51], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 51)[0m
Rendered applications/show.html.erb within layouts/application (2.6ms)
Completed 200 OK in 5ms (Views: 2.4ms | ActiveRecord: 1.4ms) Started GET “/applications/51?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:13:49 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"51"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 51], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 51], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 51)[0m
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (2.8ms)
Completed 200 OK in 5ms (Views: 1.7ms | ActiveRecord: 2.2ms) Started POST “/application_pets?app_id=51&pet_id=127” for 127.0.0.1 at 2021-10-26 20:13:49 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"51", "pet_id"=>"127"}
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 51], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 127], ["LIMIT", 1]]
[1m[36mApplicationPet Create (1.1ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 127], ["application_id", 51], ["created_at", "2021-10-27 02:13:49.038384"], ["updated_at", "2021-10-27 02:13:49.038384"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/51 Completed 302 Found in 5ms (ActiveRecord: 1.8ms) Started GET “/applications/51” for 127.0.0.1 at 2021-10-26 20:13:49 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"51"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 51], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 51], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 51)[0m
Rendered applications/show.html.erb within layouts/application (1.6ms)
Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 1.0ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:13:49.048432"], ["updated_at", "2021-10-27 02:13:49.048432"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 52], ["created_at", "2021-10-27 02:13:49.050863"], ["updated_at", "2021-10-27 02:13:49.050863"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 52], ["created_at", "2021-10-27 02:13:49.052740"], ["updated_at", "2021-10-27 02:13:49.052740"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 52], ["created_at", "2021-10-27 02:13:49.054764"], ["updated_at", "2021-10-27 02:13:49.054764"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:13:49.056659"], ["updated_at", "2021-10-27 02:13:49.056659"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/52” for 127.0.0.1 at 2021-10-26 20:13:49 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 52], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 52], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 52)[0m
Rendered applications/show.html.erb within layouts/application (2.3ms)
Completed 200 OK in 5ms (Views: 2.9ms | ActiveRecord: 1.3ms) Started GET “/applications/52?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-26 20:13:49 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"52"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 52], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 52], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 52)[0m
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')[0m
Rendered applications/show.html.erb within layouts/application (3.0ms)
Completed 200 OK in 5ms (Views: 2.1ms | ActiveRecord: 1.8ms) Started POST “/application_pets?app_id=52&pet_id=130” for 127.0.0.1 at 2021-10-26 20:13:49 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"52", "pet_id"=>"130"}
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 52], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 130], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.9ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 130], ["application_id", 52], ["created_at", "2021-10-27 02:13:49.082728"], ["updated_at", "2021-10-27 02:13:49.082728"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/52 Completed 302 Found in 4ms (ActiveRecord: 1.6ms) Started GET “/applications/52” for 127.0.0.1 at 2021-10-26 20:13:49 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 52], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 52], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 52)[0m
Rendered applications/show.html.erb within layouts/application (1.7ms)
Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 0.8ms) Started PATCH “/applications/52” for 127.0.0.1 at 2021-10-26 20:13:49 -0600 Processing by ApplicationsController#update as HTML
Parameters: {"utf8"=>"✓", "why"=>"I love dogs", "commit"=>"Submit Application", "id"=>"52"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 52], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit, :id
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mApplication Update (0.6ms)[0m [1m[33mUPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3[0m [["application_status", "Pending"], ["updated_at", "2021-10-27 02:13:49.100469"], ["id", 52]] [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/52 Completed 302 Found in 3ms (ActiveRecord: 1.2ms) Started GET “/applications/52” for 127.0.0.1 at 2021-10-26 20:13:49 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"52"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 52], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 52], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 52)[0m
Rendered applications/show.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.7ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:25:08.152468"], ["updated_at", "2021-10-27 02:25:08.152468"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 53], ["created_at", "2021-10-27 02:25:08.186967"], ["updated_at", "2021-10-27 02:25:08.186967"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 53], ["created_at", "2021-10-27 02:25:08.189634"], ["updated_at", "2021-10-27 02:25:08.189634"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 53], ["created_at", "2021-10-27 02:25:08.190916"], ["updated_at", "2021-10-27 02:25:08.190916"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:25:08.209896"], ["updated_at", "2021-10-27 02:25:08.209896"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.3ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 131], ["application_id", 53], ["created_at", "2021-10-27 02:25:08.226416"], ["updated_at", "2021-10-27 02:25:08.226416"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 132], ["application_id", 53], ["created_at", "2021-10-27 02:25:08.228744"], ["updated_at", "2021-10-27 02:25:08.228744"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/53” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"53"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 53], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 53], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 53)[0m
Rendered applications/show.html.erb within layouts/application (5.3ms)
Completed 200 OK in 90ms (Views: 81.7ms | ActiveRecord: 2.2ms) Started GET “/pets/131” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"131"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 131], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 53], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 4ms (Views: 2.0ms | ActiveRecord: 0.8ms) Started GET “/applications/53” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"53"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 53], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 53], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 53)[0m
Rendered applications/show.html.erb within layouts/application (1.2ms)
Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.1ms) Started GET “/pets/132” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"132"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 132], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 53], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.5ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:25:08.396641"], ["updated_at", "2021-10-27 02:25:08.396641"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 54], ["created_at", "2021-10-27 02:25:08.398482"], ["updated_at", "2021-10-27 02:25:08.398482"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 54], ["created_at", "2021-10-27 02:25:08.400095"], ["updated_at", "2021-10-27 02:25:08.400095"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 54], ["created_at", "2021-10-27 02:25:08.401502"], ["updated_at", "2021-10-27 02:25:08.401502"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:25:08.402803"], ["updated_at", "2021-10-27 02:25:08.402803"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/54” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"54"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 54], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 54], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 54)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 54)[0m
Rendered applications/show.html.erb within layouts/application (3.9ms)
Completed 200 OK in 6ms (Views: 3.5ms | ActiveRecord: 1.7ms) Started GET “/applications/54?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"54"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 54], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 54], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 54)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 54)[0m
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (3.2ms)
Completed 200 OK in 5ms (Views: 1.9ms | ActiveRecord: 2.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:25:08.436193"], ["updated_at", "2021-10-27 02:25:08.436193"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 55], ["created_at", "2021-10-27 02:25:08.438084"], ["updated_at", "2021-10-27 02:25:08.438084"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:25:08.439536"], ["updated_at", "2021-10-27 02:25:08.439536"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/55” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"55"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)[0m
Rendered applications/show.html.erb within layouts/application (2.5ms)
Completed 200 OK in 6ms (Views: 3.6ms | ActiveRecord: 1.4ms) Started GET “/applications/55?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"55"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)[0m
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (5.9ms)
Completed 200 OK in 8ms (Views: 5.1ms | ActiveRecord: 2.0ms) Started POST “/application_pets?app_id=55&pet_id=137” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"55", "pet_id"=>"137"}
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]]
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 137], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.9ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 137], ["application_id", 55], ["created_at", "2021-10-27 02:25:08.475899"], ["updated_at", "2021-10-27 02:25:08.475899"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/55 Completed 302 Found in 5ms (ActiveRecord: 2.0ms) Started GET “/applications/55” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"55"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)[0m
Rendered applications/show.html.erb within layouts/application (2.7ms)
Completed 200 OK in 5ms (Views: 2.5ms | ActiveRecord: 1.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 02:25:08.487437"], ["updated_at", "2021-10-27 02:25:08.487437"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 56], ["created_at", "2021-10-27 02:25:08.488960"], ["updated_at", "2021-10-27 02:25:08.488960"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 56], ["created_at", "2021-10-27 02:25:08.490435"], ["updated_at", "2021-10-27 02:25:08.490435"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 56], ["created_at", "2021-10-27 02:25:08.492098"], ["updated_at", "2021-10-27 02:25:08.492098"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:25:08.493419"], ["updated_at", "2021-10-27 02:25:08.493419"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/56” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"56"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)[0m
Rendered applications/show.html.erb within layouts/application (2.3ms)
Completed 200 OK in 5ms (Views: 2.9ms | ActiveRecord: 1.5ms) Started GET “/applications/56?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"56"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)[0m
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')[0m
Rendered applications/show.html.erb within layouts/application (3.3ms)
Completed 200 OK in 5ms (Views: 3.0ms | ActiveRecord: 1.8ms) Started POST “/application_pets?app_id=56&pet_id=140” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"56", "pet_id"=>"140"}
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 140], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.9ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 140], ["application_id", 56], ["created_at", "2021-10-27 02:25:08.520357"], ["updated_at", "2021-10-27 02:25:08.520357"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/56 Completed 302 Found in 4ms (ActiveRecord: 1.6ms) Started GET “/applications/56” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"56"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)[0m
Rendered applications/show.html.erb within layouts/application (2.8ms)
Completed 200 OK in 5ms (Views: 2.7ms | ActiveRecord: 1.2ms) Started PATCH “/applications/56” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#update as HTML
Parameters: {"utf8"=>"✓", "why"=>"I love dogs", "commit"=>"Submit Application", "id"=>"56"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit, :id
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mApplication Update (0.6ms)[0m [1m[33mUPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3[0m [["application_status", "Pending"], ["updated_at", "2021-10-27 02:25:08.539380"], ["id", 56]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/56 Completed 302 Found in 2ms (ActiveRecord: 1.1ms) Started GET “/applications/56” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"56"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)[0m
Rendered applications/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.9ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 02:25:08.551366"], ["updated_at", "2021-10-27 02:25:08.551366"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/57” for 127.0.0.1 at 2021-10-26 20:25:08 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"57"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 57)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 57)[0m
Rendered applications/show.html.erb within layouts/application (1.7ms)
Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 1.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (1.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-27 07:28:06 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (1.2ms)
Completed 200 OK in 92ms (Views: 88.8ms | ActiveRecord: 0.0ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (1.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (7.6ms)
Completed 200 OK in 13ms (Views: 7.2ms | ActiveRecord: 4.1ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.0ms)
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:28:07 -0600
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.0ms)
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (6.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (6.8ms)
Completed 200 OK in 11ms (Views: 1.3ms | ActiveRecord: 8.6ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.0ms)
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.7ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] Rendered veterinarians/index.html.erb within layouts/application (1.8ms)
Completed 200 OK in 7ms (Views: 2.1ms | ActiveRecord: 3.7ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:28:07.195236"], ["updated_at", "2021-10-27 13:28:07.195236"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.1ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 57], ["created_at", "2021-10-27 13:28:07.214737"], ["updated_at", "2021-10-27 13:28:07.214737"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 57], ["created_at", "2021-10-27 13:28:07.216848"], ["updated_at", "2021-10-27 13:28:07.216848"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 57], ["created_at", "2021-10-27 13:28:07.218257"], ["updated_at", "2021-10-27 13:28:07.218257"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.9ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:28:07.233307"], ["updated_at", "2021-10-27 13:28:07.233307"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 141], ["application_id", 58], ["created_at", "2021-10-27 13:28:07.250702"], ["updated_at", "2021-10-27 13:28:07.250702"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 142], ["application_id", 58], ["created_at", "2021-10-27 13:28:07.253273"], ["updated_at", "2021-10-27 13:28:07.253273"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/58” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"58"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 58], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 58], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 58)[0m
Rendered applications/show.html.erb within layouts/application (6.3ms)
Completed 200 OK in 10ms (Views: 5.4ms | ActiveRecord: 2.3ms) Started GET “/pets/141” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"141"}
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 141], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.2ms)
Completed 200 OK in 4ms (Views: 1.6ms | ActiveRecord: 0.6ms) Started GET “/applications/58” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"58"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 58], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 58], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 58)[0m
Rendered applications/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.2ms) Started GET “/pets/142” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"142"}
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 142], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.7ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:28:07.303338"], ["updated_at", "2021-10-27 13:28:07.303338"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 58], ["created_at", "2021-10-27 13:28:07.305013"], ["updated_at", "2021-10-27 13:28:07.305013"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 58], ["created_at", "2021-10-27 13:28:07.306423"], ["updated_at", "2021-10-27 13:28:07.306423"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 58], ["created_at", "2021-10-27 13:28:07.307544"], ["updated_at", "2021-10-27 13:28:07.307544"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:28:07.308919"], ["updated_at", "2021-10-27 13:28:07.308919"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/59” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"59"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 59)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 59)[0m
Rendered applications/show.html.erb within layouts/application (1.8ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 1.3ms) Started GET “/applications/59?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"59"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 59)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 59)[0m
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (3.0ms)
Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 1.7ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:28:07.331591"], ["updated_at", "2021-10-27 13:28:07.331591"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 59], ["created_at", "2021-10-27 13:28:07.333284"], ["updated_at", "2021-10-27 13:28:07.333284"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:28:07.334247"], ["updated_at", "2021-10-27 13:28:07.334247"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/60” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"60"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 60], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 60], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 60)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 60)[0m
Rendered applications/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.9ms) Started GET “/applications/60?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"60"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 60], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 60], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 60)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 60)[0m
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (2.4ms)
Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 1.4ms) Started POST “/application_pets?app_id=60&pet_id=147” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"60", "pet_id"=>"147"}
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 60], ["LIMIT", 1]]
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 147], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.9ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 147], ["application_id", 60], ["created_at", "2021-10-27 13:28:07.355594"], ["updated_at", "2021-10-27 13:28:07.355594"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/60 Completed 302 Found in 4ms (ActiveRecord: 1.6ms) Started GET “/applications/60” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"60"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 60], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 60], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 60)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 60)[0m
Rendered applications/show.html.erb within layouts/application (2.4ms)
Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 1.2ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:28:07.364995"], ["updated_at", "2021-10-27 13:28:07.364995"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 60], ["created_at", "2021-10-27 13:28:07.366253"], ["updated_at", "2021-10-27 13:28:07.366253"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 60], ["created_at", "2021-10-27 13:28:07.367357"], ["updated_at", "2021-10-27 13:28:07.367357"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 60], ["created_at", "2021-10-27 13:28:07.368661"], ["updated_at", "2021-10-27 13:28:07.368661"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:28:07.369551"], ["updated_at", "2021-10-27 13:28:07.369551"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/61” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"61"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 61)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 61)[0m
Rendered applications/show.html.erb within layouts/application (2.2ms)
Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.7ms) Started GET “/applications/61?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"61"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 61)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 61)[0m
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')[0m
Rendered applications/show.html.erb within layouts/application (2.9ms)
Completed 200 OK in 6ms (Views: 3.2ms | ActiveRecord: 1.7ms) Started POST “/application_pets?app_id=61&pet_id=150” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"61", "pet_id"=>"150"}
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 150], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.9ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 150], ["application_id", 61], ["created_at", "2021-10-27 13:28:07.398312"], ["updated_at", "2021-10-27 13:28:07.398312"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/61 Completed 302 Found in 6ms (ActiveRecord: 1.7ms) Started GET “/applications/61” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"61"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 61)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 61)[0m
Rendered applications/show.html.erb within layouts/application (2.0ms)
Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.9ms) Started PATCH “/applications/61” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#update as HTML
Parameters: {"utf8"=>"✓", "why"=>"I love dogs", "commit"=>"Submit Application", "id"=>"61"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit, :id
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mApplication Update (0.4ms)[0m [1m[33mUPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3[0m [["application_status", "Pending"], ["updated_at", "2021-10-27 13:28:07.411780"], ["id", 61]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/61 Completed 302 Found in 3ms (ActiveRecord: 1.0ms) Started GET “/applications/61” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"61"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 61)[0m
Rendered applications/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.1ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:28:07.430256"], ["updated_at", "2021-10-27 13:28:07.430256"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/62” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"62"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 62], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 62], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 62)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 62)[0m
Rendered applications/show.html.erb within layouts/application (2.4ms)
Completed 200 OK in 5ms (Views: 2.1ms | ActiveRecord: 1.7ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.442112"], ["updated_at", "2021-10-27 13:28:07.442112"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/61/pets/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"61"}
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (2.9ms)
Completed 200 OK in 6ms (Views: 3.8ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.456512"], ["updated_at", "2021-10-27 13:28:07.456512"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/62/pets/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"62"}
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 62], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (1.0ms)
Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.3ms) Started POST “/shelters/62/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"Bumblebee", "breed"=>"Welsh Corgi", "age"=>"1", "adoptable"=>"1", "commit"=>"Save ", "shelter_id"=>"62"}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 62], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "Welsh Corgi"], ["name", "Bumblebee"], ["shelter_id", 62], ["created_at", "2021-10-27 13:28:07.472354"], ["updated_at", "2021-10-27 13:28:07.472354"]]
[1m[35m (0.5ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Unpermitted parameters: :utf8, :commit Redirected to www.example.com/shelters/62/pets Completed 302 Found in 3ms (ActiveRecord: 1.2ms) Started GET “/shelters/62/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"62"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 62], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 62], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (2.2ms)
Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.486650"], ["updated_at", "2021-10-27 13:28:07.486650"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/63/pets/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"63"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.1ms) Started POST “/shelters/63/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "breed"=>"", "age"=>"", "adoptable"=>"0", "commit"=>"Save ", "shelter_id"=>"63"}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]] [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Unpermitted parameters: :utf8, :commit Redirected to www.example.com/shelters/63/pets/new Completed 302 Found in 5ms (ActiveRecord: 0.5ms) Started GET “/shelters/63/pets/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"63"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.1ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.511184"], ["updated_at", "2021-10-27 13:28:07.511184"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 64], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 64], ["created_at", "2021-10-27 13:28:07.512784"], ["updated_at", "2021-10-27 13:28:07.512784"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 64], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 64], ["created_at", "2021-10-27 13:28:07.514479"], ["updated_at", "2021-10-27 13:28:07.514479"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 64], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 64], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.5ms)
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.525307"], ["updated_at", "2021-10-27 13:28:07.525307"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 65], ["created_at", "2021-10-27 13:28:07.527176"], ["updated_at", "2021-10-27 13:28:07.527176"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 65], ["created_at", "2021-10-27 13:28:07.528627"], ["updated_at", "2021-10-27 13:28:07.528627"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 65], ["created_at", "2021-10-27 13:28:07.530270"], ["updated_at", "2021-10-27 13:28:07.530270"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.535902"], ["updated_at", "2021-10-27 13:28:07.535902"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 66], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 66], ["created_at", "2021-10-27 13:28:07.537271"], ["updated_at", "2021-10-27 13:28:07.537271"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 66], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 66], ["created_at", "2021-10-27 13:28:07.539065"], ["updated_at", "2021-10-27 13:28:07.539065"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 66], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 66], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms) Started GET “/pets/157/edit” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"157"}
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 157], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.8ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.550095"], ["updated_at", "2021-10-27 13:28:07.550095"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 67], ["created_at", "2021-10-27 13:28:07.551622"], ["updated_at", "2021-10-27 13:28:07.551622"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 67], ["created_at", "2021-10-27 13:28:07.553005"], ["updated_at", "2021-10-27 13:28:07.553005"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms) Started DELETE “/pets/159” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"159"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 159], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (1.0ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 159]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 2ms (ActiveRecord: 1.5ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.571079"], ["updated_at", "2021-10-27 13:28:07.571079"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 68], ["created_at", "2021-10-27 13:28:07.572717"], ["updated_at", "2021-10-27 13:28:07.572717"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 68], ["created_at", "2021-10-27 13:28:07.574344"], ["updated_at", "2021-10-27 13:28:07.574344"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 68], ["created_at", "2021-10-27 13:28:07.575621"], ["updated_at", "2021-10-27 13:28:07.575621"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.5ms)
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.3ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
[1m[36mPet Load (1.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
[1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (3.0ms)
Completed 200 OK in 4ms (Views: 1.5ms | ActiveRecord: 2.0ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#new as HTML
Rendering applications/new.html.erb within layouts/application Rendered applications/new.html.erb within layouts/application (0.9ms)
Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.0ms) Started POST “/applications” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#create as HTML
Parameters: {"utf8"=>"✓", "applicant_name"=>"Jacob Yarborough", "street_address"=>"789 South Street", "city"=>"Denver", "state"=>"CO", "zipcode"=>"80222", "why"=>"I love dogs", "commit"=>"Submit Application"}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "789 South Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80222"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:28:07.603298"], ["updated_at", "2021-10-27 13:28:07.603298"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Update (0.6ms)[0m [1m[33mUPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3[0m [["application_status", "In Progress"], ["updated_at", "2021-10-27 13:28:07.604702"], ["id", 63]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/63 Completed 302 Found in 3ms (ActiveRecord: 1.7ms) Started GET “/applications/63” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"63"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 63)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 63)[0m
Rendered applications/show.html.erb within layouts/application (1.6ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 1.0ms)
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" ORDER BY "applications"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Mystery Building"], ["city", "Irvine CA"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.616220"], ["updated_at", "2021-10-27 13:28:07.616220"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 2], ["breed", "Great Dane"], ["name", "Scooby"], ["shelter_id", 69], ["created_at", "2021-10-27 13:28:07.618008"], ["updated_at", "2021-10-27 13:28:07.618008"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/164” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"164"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 164], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Mystery Building"], ["city", "Irvine CA"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.625323"], ["updated_at", "2021-10-27 13:28:07.625323"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "Great Dane"], ["name", "Scrappy"], ["shelter_id", 70], ["created_at", "2021-10-27 13:28:07.626904"], ["updated_at", "2021-10-27 13:28:07.626904"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/165” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"165"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 165], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.3ms) Started DELETE “/pets/165” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"165"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 165], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (1.0ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 165]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 2ms (ActiveRecord: 1.3ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Hollywood shelter"], ["city", "Irvine, CA"], ["rank", 7], ["created_at", "2021-10-27 13:28:07.637945"], ["updated_at", "2021-10-27 13:28:07.637945"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "George Hairlesson"], ["shelter_id", 71], ["created_at", "2021-10-27 13:28:07.639357"], ["updated_at", "2021-10-27 13:28:07.639357"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/166/edit” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"166"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 166], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Heavenly pets"], ["city", "Aurora, CO"], ["rank", 7], ["created_at", "2021-10-27 13:28:07.645557"], ["updated_at", "2021-10-27 13:28:07.645557"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 72], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "GSD"], ["name", "Charlie"], ["shelter_id", 72], ["created_at", "2021-10-27 13:28:07.646895"], ["updated_at", "2021-10-27 13:28:07.646895"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/167/edit” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"167"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 167], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/pets/167” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"Itchy", "breed"=>"", "adoptable"=>"0", "age"=>"1", "commit"=>"Save ", "id"=>"167"}
[1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 167], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 72], ["LIMIT", 1]] [1m[36mPet Update (0.6ms)[0m [1m[33mUPDATE "pets" SET "name" = $1, "age" = $2, "breed" = $3, "adoptable" = $4, "updated_at" = $5 WHERE "pets"."id" = $6[0m [["name", "Itchy"], ["age", 1], ["breed", ""], ["adoptable", false], ["updated_at", "2021-10-27 13:28:07.655924"], ["id", 167]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets/167 Completed 302 Found in 3ms (ActiveRecord: 1.0ms) Started GET “/pets/167” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"167"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 167], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 72], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Heavenly pets"], ["city", "Aurora, CO"], ["rank", 7], ["created_at", "2021-10-27 13:28:07.661869"], ["updated_at", "2021-10-27 13:28:07.661869"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "Whippet"], ["name", "Annabelle"], ["shelter_id", 73], ["created_at", "2021-10-27 13:28:07.663583"], ["updated_at", "2021-10-27 13:28:07.663583"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/168/edit” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"168"}
[1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 168], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.1ms) Started PATCH “/pets/168” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "breed"=>"", "adoptable"=>"0", "age"=>"", "commit"=>"Save ", "id"=>"168"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 168], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]] [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets/168/edit Completed 302 Found in 3ms (ActiveRecord: 0.7ms) Started GET “/pets/168/edit” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"168"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 168], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.685481"], ["updated_at", "2021-10-27 13:28:07.685481"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:07.686700"], ["updated_at", "2021-10-27 13:28:07.686700"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:07.687635"], ["updated_at", "2021-10-27 13:28:07.687635"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 74], ["created_at", "2021-10-27 13:28:07.688853"], ["updated_at", "2021-10-27 13:28:07.688853"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 74], ["created_at", "2021-10-27 13:28:07.690196"], ["updated_at", "2021-10-27 13:28:07.690196"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 76], ["created_at", "2021-10-27 13:28:07.691610"], ["updated_at", "2021-10-27 13:28:07.691610"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:28:07 -0600
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.694042"], ["updated_at", "2021-10-27 13:28:07.694042"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:07.695145"], ["updated_at", "2021-10-27 13:28:07.695145"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:07.696317"], ["updated_at", "2021-10-27 13:28:07.696317"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 77], ["created_at", "2021-10-27 13:28:07.697566"], ["updated_at", "2021-10-27 13:28:07.697566"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 77], ["created_at", "2021-10-27 13:28:07.698634"], ["updated_at", "2021-10-27 13:28:07.698634"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 79], ["created_at", "2021-10-27 13:28:07.700126"], ["updated_at", "2021-10-27 13:28:07.700126"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:28:07 -0600
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.702702"], ["updated_at", "2021-10-27 13:28:07.702702"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:07.703794"], ["updated_at", "2021-10-27 13:28:07.703794"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:07.704841"], ["updated_at", "2021-10-27 13:28:07.704841"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 80], ["created_at", "2021-10-27 13:28:07.706115"], ["updated_at", "2021-10-27 13:28:07.706115"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 80], ["created_at", "2021-10-27 13:28:07.707432"], ["updated_at", "2021-10-27 13:28:07.707432"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 82], ["created_at", "2021-10-27 13:28:07.708805"], ["updated_at", "2021-10-27 13:28:07.708805"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:28:07 -0600
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.711147"], ["updated_at", "2021-10-27 13:28:07.711147"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:07.712295"], ["updated_at", "2021-10-27 13:28:07.712295"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:07.713355"], ["updated_at", "2021-10-27 13:28:07.713355"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 83], ["created_at", "2021-10-27 13:28:07.714682"], ["updated_at", "2021-10-27 13:28:07.714682"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 83], ["created_at", "2021-10-27 13:28:07.716009"], ["updated_at", "2021-10-27 13:28:07.716009"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 85], ["created_at", "2021-10-27 13:28:07.717357"], ["updated_at", "2021-10-27 13:28:07.717357"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:28:07 -0600
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.719705"], ["updated_at", "2021-10-27 13:28:07.719705"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:07.720824"], ["updated_at", "2021-10-27 13:28:07.720824"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:07.721898"], ["updated_at", "2021-10-27 13:28:07.721898"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 86], ["created_at", "2021-10-27 13:28:07.723366"], ["updated_at", "2021-10-27 13:28:07.723366"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 86], ["created_at", "2021-10-27 13:28:07.724688"], ["updated_at", "2021-10-27 13:28:07.724688"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 88], ["created_at", "2021-10-27 13:28:07.725866"], ["updated_at", "2021-10-27 13:28:07.725866"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:28:07 -0600
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.728648"], ["updated_at", "2021-10-27 13:28:07.728648"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:07.729771"], ["updated_at", "2021-10-27 13:28:07.729771"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:07.730840"], ["updated_at", "2021-10-27 13:28:07.730840"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 89], ["created_at", "2021-10-27 13:28:07.732148"], ["updated_at", "2021-10-27 13:28:07.732148"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 89], ["created_at", "2021-10-27 13:28:07.733504"], ["updated_at", "2021-10-27 13:28:07.733504"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 91], ["created_at", "2021-10-27 13:28:07.734884"], ["updated_at", "2021-10-27 13:28:07.734884"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:28:07 -0600
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.737268"], ["updated_at", "2021-10-27 13:28:07.737268"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:07.738612"], ["updated_at", "2021-10-27 13:28:07.738612"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:07.739766"], ["updated_at", "2021-10-27 13:28:07.739766"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 92], ["created_at", "2021-10-27 13:28:07.741372"], ["updated_at", "2021-10-27 13:28:07.741372"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 92], ["created_at", "2021-10-27 13:28:07.742639"], ["updated_at", "2021-10-27 13:28:07.742639"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 94], ["created_at", "2021-10-27 13:28:07.743824"], ["updated_at", "2021-10-27 13:28:07.743824"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:28:07 -0600
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.746207"], ["updated_at", "2021-10-27 13:28:07.746207"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.747349"], ["updated_at", "2021-10-27 13:28:07.747349"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 95], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 95], ["created_at", "2021-10-27 13:28:07.748925"], ["updated_at", "2021-10-27 13:28:07.748925"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 95], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 95], ["created_at", "2021-10-27 13:28:07.750580"], ["updated_at", "2021-10-27 13:28:07.750580"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 96], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 96], ["created_at", "2021-10-27 13:28:07.752236"], ["updated_at", "2021-10-27 13:28:07.752236"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 95], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 95], ["created_at", "2021-10-27 13:28:07.754061"], ["updated_at", "2021-10-27 13:28:07.754061"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/95/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"95"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 95], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 95], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.771139"], ["updated_at", "2021-10-27 13:28:07.771139"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.772486"], ["updated_at", "2021-10-27 13:28:07.772486"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 97], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 97], ["created_at", "2021-10-27 13:28:07.774256"], ["updated_at", "2021-10-27 13:28:07.774256"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 97], ["LIMIT", 1]]
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 97], ["created_at", "2021-10-27 13:28:07.775787"], ["updated_at", "2021-10-27 13:28:07.775787"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 98], ["LIMIT", 1]]
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 98], ["created_at", "2021-10-27 13:28:07.777086"], ["updated_at", "2021-10-27 13:28:07.777086"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 97], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 97], ["created_at", "2021-10-27 13:28:07.778424"], ["updated_at", "2021-10-27 13:28:07.778424"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/97/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"97"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 97], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 97], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.6ms) Started GET “/shelters/97/pets/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"97"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 97], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.788803"], ["updated_at", "2021-10-27 13:28:07.788803"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.790068"], ["updated_at", "2021-10-27 13:28:07.790068"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 99], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 99], ["created_at", "2021-10-27 13:28:07.791979"], ["updated_at", "2021-10-27 13:28:07.791979"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 99], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 99], ["created_at", "2021-10-27 13:28:07.793468"], ["updated_at", "2021-10-27 13:28:07.793468"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 100], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 100], ["created_at", "2021-10-27 13:28:07.795087"], ["updated_at", "2021-10-27 13:28:07.795087"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 99], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 99], ["created_at", "2021-10-27 13:28:07.796746"], ["updated_at", "2021-10-27 13:28:07.796746"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/99/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"99"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 99], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 99], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.6ms) Started GET “/pets/198/edit” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"198"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 198], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.806368"], ["updated_at", "2021-10-27 13:28:07.806368"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.807723"], ["updated_at", "2021-10-27 13:28:07.807723"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 101], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 101], ["created_at", "2021-10-27 13:28:07.809211"], ["updated_at", "2021-10-27 13:28:07.809211"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 101], ["LIMIT", 1]]
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 101], ["created_at", "2021-10-27 13:28:07.810485"], ["updated_at", "2021-10-27 13:28:07.810485"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 102], ["LIMIT", 1]]
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 102], ["created_at", "2021-10-27 13:28:07.811688"], ["updated_at", "2021-10-27 13:28:07.811688"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 101], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 101], ["created_at", "2021-10-27 13:28:07.812935"], ["updated_at", "2021-10-27 13:28:07.812935"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/101/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"101"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 101], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 101], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms) Started DELETE “/pets/202” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"202"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 202], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (0.9ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 202]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 2ms (ActiveRecord: 1.4ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 101], ["LIMIT", 1]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 102], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 101], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.9ms)
Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.5ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.827630"], ["updated_at", "2021-10-27 13:28:07.827630"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.828699"], ["updated_at", "2021-10-27 13:28:07.828699"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 103], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 103], ["created_at", "2021-10-27 13:28:07.830097"], ["updated_at", "2021-10-27 13:28:07.830097"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 103], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 103], ["created_at", "2021-10-27 13:28:07.831788"], ["updated_at", "2021-10-27 13:28:07.831788"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 104], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 104], ["created_at", "2021-10-27 13:28:07.833696"], ["updated_at", "2021-10-27 13:28:07.833696"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 103], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 103], ["created_at", "2021-10-27 13:28:07.835376"], ["updated_at", "2021-10-27 13:28:07.835376"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/103/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"103"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 103], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 103], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.5ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.843060"], ["updated_at", "2021-10-27 13:28:07.843060"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.844067"], ["updated_at", "2021-10-27 13:28:07.844067"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 105], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 105], ["created_at", "2021-10-27 13:28:07.845526"], ["updated_at", "2021-10-27 13:28:07.845526"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 105], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 105], ["created_at", "2021-10-27 13:28:07.847402"], ["updated_at", "2021-10-27 13:28:07.847402"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 106], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 106], ["created_at", "2021-10-27 13:28:07.849056"], ["updated_at", "2021-10-27 13:28:07.849056"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 105], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 105], ["created_at", "2021-10-27 13:28:07.850658"], ["updated_at", "2021-10-27 13:28:07.850658"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/105/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"105"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 105], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 105], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms) Started GET “/shelters/105/pets?utf8=%E2%9C%93&age=3&commit=Filter” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by SheltersController#pets as HTML
Parameters: {"utf8"=>"✓", "age"=>"3", "commit"=>"Filter", "shelter_id"=>"105"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 105], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= '3')[0m [["shelter_id", 105], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)
Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.6ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.865594"], ["updated_at", "2021-10-27 13:28:07.865594"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.866898"], ["updated_at", "2021-10-27 13:28:07.866898"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 107], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 107], ["created_at", "2021-10-27 13:28:07.868490"], ["updated_at", "2021-10-27 13:28:07.868490"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 107], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 107], ["created_at", "2021-10-27 13:28:07.870158"], ["updated_at", "2021-10-27 13:28:07.870158"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 108], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 108], ["created_at", "2021-10-27 13:28:07.871830"], ["updated_at", "2021-10-27 13:28:07.871830"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 107], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 107], ["created_at", "2021-10-27 13:28:07.873548"], ["updated_at", "2021-10-27 13:28:07.873548"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/107/pets” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"107"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 107], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 107], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms) Started GET “/shelters/107/pets?sort=alphabetical” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by SheltersController#pets as HTML
Parameters: {"sort"=>"alphabetical", "shelter_id"=>"107"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 107], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (2.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC[0m [["shelter_id", 107], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (3.4ms)
Completed 200 OK in 5ms (Views: 1.4ms | ActiveRecord: 2.6ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.888287"], ["updated_at", "2021-10-27 13:28:07.888287"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/109” for 127.0.0.1 at 2021-10-27 07:28:07 -0600
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.890859"], ["updated_at", "2021-10-27 13:28:07.890859"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "shorthair"], ["name", "garfield"], ["shelter_id", 110], ["created_at", "2021-10-27 13:28:07.892026"], ["updated_at", "2021-10-27 13:28:07.892026"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/110” for 127.0.0.1 at 2021-10-27 07:28:07 -0600
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.894306"], ["updated_at", "2021-10-27 13:28:07.894306"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/111” for 127.0.0.1 at 2021-10-27 07:28:07 -0600
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.896241"], ["updated_at", "2021-10-27 13:28:07.896241"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/112” for 127.0.0.1 at 2021-10-27 07:28:07 -0600
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.898553"], ["updated_at", "2021-10-27 13:28:07.898553"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/113/edit” for 127.0.0.1 at 2021-10-27 07:28:07 -0600
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.900532"], ["updated_at", "2021-10-27 13:28:07.900532"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/114/edit” for 127.0.0.1 at 2021-10-27 07:28:07 -0600
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:07.905447"], ["updated_at", "2021-10-27 13:28:07.905447"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/115/edit” for 127.0.0.1 at 2021-10-27 07:28:07 -0600
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (1.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:07.918515"], ["updated_at", "2021-10-27 13:28:07.918515"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/1/veterinarians/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"1"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 1], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.9ms)
Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.6ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:07.928755"], ["updated_at", "2021-10-27 13:28:07.928755"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/2/veterinarians/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"2"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started POST “/veterinary_offices/2/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by VeterinariansController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"Dr. Burstyn", "review_rating"=>"10", "on_call"=>"1", "commit"=>"Save ", "veterinary_office_id"=>"2"}
Unpermitted parameters: :utf8, :commit
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
[1m[36mVeterinarian Create (1.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Dr. Burstyn"], ["veterinary_office_id", 2], ["created_at", "2021-10-27 13:28:07.950012"], ["updated_at", "2021-10-27 13:28:07.950012"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices/2/veterinarians Completed 302 Found in 14ms (ActiveRecord: 8.3ms) Started GET “/veterinary_offices/2/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"2"}
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 2], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.7ms)
Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 0.7ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:07.960065"], ["updated_at", "2021-10-27 13:28:07.960065"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/3/veterinarians/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"3"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 3], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started POST “/veterinary_offices/3/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by VeterinariansController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "review_rating"=>"", "on_call"=>"0", "commit"=>"Save ", "veterinary_office_id"=>"3"}
Unpermitted parameters: :utf8, :commit
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 3], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 3], ["LIMIT", 1]] [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices/3/veterinarians/new Completed 302 Found in 3ms (ActiveRecord: 0.4ms) Started GET “/veterinary_offices/3/veterinarians/new” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"3"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 3], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.4ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:07.976215"], ["updated_at", "2021-10-27 13:28:07.976215"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 4], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 4], ["created_at", "2021-10-27 13:28:07.977931"], ["updated_at", "2021-10-27 13:28:07.977931"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 4], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.9ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 4], ["created_at", "2021-10-27 13:28:07.979295"], ["updated_at", "2021-10-27 13:28:07.979295"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 4], ["LIMIT", 1]] [1m[36mCACHE VeterinaryOffice Load (0.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 4], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:07.988644"], ["updated_at", "2021-10-27 13:28:07.988644"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 5], ["created_at", "2021-10-27 13:28:07.990226"], ["updated_at", "2021-10-27 13:28:07.990226"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 5], ["created_at", "2021-10-27 13:28:07.991560"], ["updated_at", "2021-10-27 13:28:07.991560"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:07 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:07.996910"], ["updated_at", "2021-10-27 13:28:07.996910"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 6], ["created_at", "2021-10-27 13:28:07.998515"], ["updated_at", "2021-10-27 13:28:07.998515"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 6], ["created_at", "2021-10-27 13:28:08.000452"], ["updated_at", "2021-10-27 13:28:08.000452"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]] [1m[36mCACHE VeterinaryOffice Load (0.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms) Started GET “/veterinarians/6/edit” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"6"}
[1m[36mVeterinarian Load (0.5ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.8ms)
Completed 200 OK in 4ms (Views: 1.3ms | ActiveRecord: 0.5ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.011004"], ["updated_at", "2021-10-27 13:28:08.011004"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 7], ["created_at", "2021-10-27 13:28:08.012709"], ["updated_at", "2021-10-27 13:28:08.012709"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 7], ["created_at", "2021-10-27 13:28:08.013947"], ["updated_at", "2021-10-27 13:28:08.013947"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]] [1m[36mCACHE VeterinaryOffice Load (0.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.5ms)
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.5ms) Started DELETE “/veterinarians/8” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#destroy as HTML
Parameters: {"id"=>"8"}
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Destroy (0.3ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 8]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.8ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.1ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (0.8ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.025477"], ["updated_at", "2021-10-27 13:28:08.025477"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 8], ["created_at", "2021-10-27 13:28:08.026809"], ["updated_at", "2021-10-27 13:28:08.026809"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/10” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#show as HTML
Parameters: {"id"=>"10"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 10], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.034199"], ["updated_at", "2021-10-27 13:28:08.034199"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 9], ["created_at", "2021-10-27 13:28:08.035546"], ["updated_at", "2021-10-27 13:28:08.035546"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/11” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#show as HTML
Parameters: {"id"=>"11"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms) Started DELETE “/veterinarians/11” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#destroy as HTML
Parameters: {"id"=>"11"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Destroy (0.2ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 11]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.5ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.1ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] Rendered veterinarians/index.html.erb within layouts/application (0.3ms)
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 13:28:08.044851"], ["updated_at", "2021-10-27 13:28:08.044851"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 10], ["created_at", "2021-10-27 13:28:08.046028"], ["updated_at", "2021-10-27 13:28:08.046028"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/12/edit” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"12"}
[1m[36mVeterinarian Load (0.5ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 13:28:08.052496"], ["updated_at", "2021-10-27 13:28:08.052496"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 11], ["created_at", "2021-10-27 13:28:08.053841"], ["updated_at", "2021-10-27 13:28:08.053841"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/13/edit” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"13"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/veterinarians/13” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"Ignacio", "on_call"=>"0", "review_rating"=>"10", "commit"=>"Save ", "id"=>"13"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]] [1m[36mVeterinarian Update (0.7ms)[0m [1m[33mUPDATE "veterinarians" SET "name" = $1, "on_call" = $2, "review_rating" = $3, "updated_at" = $4 WHERE "veterinarians"."id" = $5[0m [["name", "Ignacio"], ["on_call", false], ["review_rating", 10], ["updated_at", "2021-10-27 13:28:08.062638"], ["id", 13]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians/13 Completed 302 Found in 3ms (ActiveRecord: 1.2ms) Started GET “/veterinarians/13” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#show as HTML
Parameters: {"id"=>"13"}
[1m[36mVeterinarian Load (0.1ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 13:28:08.069171"], ["updated_at", "2021-10-27 13:28:08.069171"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 12], ["created_at", "2021-10-27 13:28:08.070617"], ["updated_at", "2021-10-27 13:28:08.070617"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/14/edit” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"14"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 14], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started PATCH “/veterinarians/14” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "on_call"=>"0", "review_rating"=>"", "commit"=>"Save ", "id"=>"14"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 14], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]] [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians/14/edit Completed 302 Found in 3ms (ActiveRecord: 0.6ms) Started GET “/veterinarians/14/edit” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"14"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 14], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#new as HTML
Rendering veterinary_offices/new.html.erb within layouts/application Rendered veterinary_offices/new.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#new as HTML
Rendering veterinary_offices/new.html.erb within layouts/application Rendered veterinary_offices/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"Houston Vet Office", "boarding_services"=>"0", "max_patient_capacity"=>"75", "commit"=>"Save "}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.7ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", false], ["max_patient_capacity", 75], ["name", "Houston Vet Office"], ["created_at", "2021-10-27 13:28:08.097830"], ["updated_at", "2021-10-27 13:28:08.097830"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 1.0ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.5ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.5ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#new as HTML
Rendering veterinary_offices/new.html.erb within layouts/application Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "boarding_services"=>"0", "max_patient_capacity"=>"", "commit"=>"Save "}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices/new Completed 302 Found in 2ms (ActiveRecord: 0.2ms) Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#new as HTML
Rendering veterinary_offices/new.html.erb within layouts/application Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 13:28:08.117606"], ["updated_at", "2021-10-27 13:28:08.117606"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 13:28:08.118636"], ["updated_at", "2021-10-27 13:28:08.118636"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:28:08.119392"], ["updated_at", "2021-10-27 13:28:08.119392"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 14], ["created_at", "2021-10-27 13:28:08.120441"], ["updated_at", "2021-10-27 13:28:08.120441"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 14], ["created_at", "2021-10-27 13:28:08.121429"], ["updated_at", "2021-10-27 13:28:08.121429"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 16], ["created_at", "2021-10-27 13:28:08.122612"], ["updated_at", "2021-10-27 13:28:08.122612"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 13:28:08.129413"], ["updated_at", "2021-10-27 13:28:08.129413"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 13:28:08.130590"], ["updated_at", "2021-10-27 13:28:08.130590"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:28:08.131632"], ["updated_at", "2021-10-27 13:28:08.131632"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 17], ["created_at", "2021-10-27 13:28:08.133093"], ["updated_at", "2021-10-27 13:28:08.133093"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 17], ["created_at", "2021-10-27 13:28:08.134313"], ["updated_at", "2021-10-27 13:28:08.134313"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 19], ["created_at", "2021-10-27 13:28:08.135343"], ["updated_at", "2021-10-27 13:28:08.135343"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 13:28:08.142231"], ["updated_at", "2021-10-27 13:28:08.142231"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 13:28:08.143422"], ["updated_at", "2021-10-27 13:28:08.143422"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:28:08.144399"], ["updated_at", "2021-10-27 13:28:08.144399"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 20], ["created_at", "2021-10-27 13:28:08.145654"], ["updated_at", "2021-10-27 13:28:08.145654"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 20], ["created_at", "2021-10-27 13:28:08.146970"], ["updated_at", "2021-10-27 13:28:08.146970"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 22], ["created_at", "2021-10-27 13:28:08.148306"], ["updated_at", "2021-10-27 13:28:08.148306"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.3ms) Started GET “/veterinary_offices?sort=veterinarian_count” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#index as HTML
Parameters: {"sort"=>"veterinarian_count"}
Rendering veterinary_offices/index.html.erb within layouts/application
[1m[36mVeterinaryOffice Load (2.6ms)[0m [1m[34mSELECT veterinary_offices.*, count(veterinarians.id) AS vets_count FROM "veterinary_offices" LEFT OUTER JOIN veterinarians ON veterinarians.veterinary_office_id = veterinary_offices.id GROUP BY veterinary_offices.id ORDER BY vets_count DESC[0m
Rendered veterinary_offices/index.html.erb within layouts/application (3.1ms)
Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 2.6ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 13:28:08.160534"], ["updated_at", "2021-10-27 13:28:08.160534"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 13:28:08.161748"], ["updated_at", "2021-10-27 13:28:08.161748"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:28:08.162776"], ["updated_at", "2021-10-27 13:28:08.162776"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 23], ["created_at", "2021-10-27 13:28:08.164048"], ["updated_at", "2021-10-27 13:28:08.164048"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 23], ["created_at", "2021-10-27 13:28:08.165426"], ["updated_at", "2021-10-27 13:28:08.165426"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 25], ["created_at", "2021-10-27 13:28:08.167084"], ["updated_at", "2021-10-27 13:28:08.167084"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started GET “/veterinary_offices/23/edit” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"23"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 23], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 13:28:08.178189"], ["updated_at", "2021-10-27 13:28:08.178189"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 13:28:08.179294"], ["updated_at", "2021-10-27 13:28:08.179294"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:28:08.180193"], ["updated_at", "2021-10-27 13:28:08.180193"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 26], ["created_at", "2021-10-27 13:28:08.181362"], ["updated_at", "2021-10-27 13:28:08.181362"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 26], ["created_at", "2021-10-27 13:28:08.182712"], ["updated_at", "2021-10-27 13:28:08.182712"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 28], ["created_at", "2021-10-27 13:28:08.183983"], ["updated_at", "2021-10-27 13:28:08.183983"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.3ms) Started DELETE “/veterinary_offices/26” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#destroy as HTML
Parameters: {"id"=>"26"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 26], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 26]]
[1m[36mVeterinarian Destroy (0.2ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 27]]
[1m[36mVeterinarian Destroy (0.3ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 28]]
[1m[36mVeterinaryOffice Destroy (1.0ms)[0m [1m[31mDELETE FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1[0m [["id", 26]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices Completed 302 Found in 4ms (ActiveRecord: 2.1ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:28:08.198983"], ["updated_at", "2021-10-27 13:28:08.198983"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/29” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#show as HTML
Parameters: {"id"=>"29"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 29], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 29]]
Rendered veterinary_offices/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.6ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:28:08.206031"], ["updated_at", "2021-10-27 13:28:08.206031"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/30” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#show as HTML
Parameters: {"id"=>"30"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 30], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 30]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.6ms)
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 30]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 90], ["name", "Aurora vet"], ["created_at", "2021-10-27 13:28:08.211827"], ["updated_at", "2021-10-27 13:28:08.211827"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/31” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#show as HTML
Parameters: {"id"=>"31"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 31], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 31]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.5ms) Started DELETE “/veterinary_offices/31” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#destroy as HTML
Parameters: {"id"=>"31"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 31], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 31]]
[1m[36mVeterinaryOffice Destroy (0.4ms)[0m [1m[31mDELETE FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1[0m [["id", 31]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 0.9ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 90], ["name", "Aurora vet"], ["created_at", "2021-10-27 13:28:08.222859"], ["updated_at", "2021-10-27 13:28:08.222859"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/32” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#show as HTML
Parameters: {"id"=>"32"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 32], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 32]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.6ms) Started GET “/veterinary_offices/32/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"32"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 32], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 32], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 13:28:08.230733"], ["updated_at", "2021-10-27 13:28:08.230733"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/33/edit” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"33"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 33], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 13:28:08.235836"], ["updated_at", "2021-10-27 13:28:08.235836"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/34/edit” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"34"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 34], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/veterinary_offices/34” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"Wichita vet office", "boarding_services"=>"0", "max_patient_capacity"=>"10", "commit"=>"Save ", "id"=>"34"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 34], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit, :id
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mVeterinaryOffice Update (0.5ms)[0m [1m[33mUPDATE "veterinary_offices" SET "name" = $1, "max_patient_capacity" = $2, "updated_at" = $3 WHERE "veterinary_offices"."id" = $4[0m [["name", "Wichita vet office"], ["max_patient_capacity", 10], ["updated_at", "2021-10-27 13:28:08.244190"], ["id", 34]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 0.8ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 13:28:08.250022"], ["updated_at", "2021-10-27 13:28:08.250022"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/35/edit” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"35"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 35], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/veterinary_offices/35” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "boarding_services"=>"0", "max_patient_capacity"=>"", "commit"=>"Save ", "id"=>"35"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 35], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit, :id
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices/35/edit Completed 302 Found in 2ms (ActiveRecord: 0.4ms) Started GET “/veterinary_offices/35/edit” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"35"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 35], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.263351"], ["updated_at", "2021-10-27 13:28:08.263351"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.264459"], ["updated_at", "2021-10-27 13:28:08.264459"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 36], ["created_at", "2021-10-27 13:28:08.266078"], ["updated_at", "2021-10-27 13:28:08.266078"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 36], ["created_at", "2021-10-27 13:28:08.267683"], ["updated_at", "2021-10-27 13:28:08.267683"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 36], ["created_at", "2021-10-27 13:28:08.269213"], ["updated_at", "2021-10-27 13:28:08.269213"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 37], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 37], ["created_at", "2021-10-27 13:28:08.270378"], ["updated_at", "2021-10-27 13:28:08.270378"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 37], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 37], ["created_at", "2021-10-27 13:28:08.271508"], ["updated_at", "2021-10-27 13:28:08.271508"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/36/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"36"}
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.5ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 36], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.2ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.7ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.279669"], ["updated_at", "2021-10-27 13:28:08.279669"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.280871"], ["updated_at", "2021-10-27 13:28:08.280871"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 38], ["created_at", "2021-10-27 13:28:08.282380"], ["updated_at", "2021-10-27 13:28:08.282380"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 38], ["created_at", "2021-10-27 13:28:08.283971"], ["updated_at", "2021-10-27 13:28:08.283971"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 38], ["created_at", "2021-10-27 13:28:08.285801"], ["updated_at", "2021-10-27 13:28:08.285801"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 39], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 39], ["created_at", "2021-10-27 13:28:08.287243"], ["updated_at", "2021-10-27 13:28:08.287243"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 39], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 39], ["created_at", "2021-10-27 13:28:08.288563"], ["updated_at", "2021-10-27 13:28:08.288563"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/38/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"38"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 38], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.2ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.7ms) Started GET “/veterinarians/36/edit” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"36"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (1.8ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.300580"], ["updated_at", "2021-10-27 13:28:08.300580"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (1.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.303356"], ["updated_at", "2021-10-27 13:28:08.303356"]]
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mVeterinarian Create (1.9ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 40], ["created_at", "2021-10-27 13:28:08.306225"], ["updated_at", "2021-10-27 13:28:08.306225"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 40], ["created_at", "2021-10-27 13:28:08.309386"], ["updated_at", "2021-10-27 13:28:08.309386"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 40], ["created_at", "2021-10-27 13:28:08.311105"], ["updated_at", "2021-10-27 13:28:08.311105"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 41], ["created_at", "2021-10-27 13:28:08.312806"], ["updated_at", "2021-10-27 13:28:08.312806"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 41], ["created_at", "2021-10-27 13:28:08.314731"], ["updated_at", "2021-10-27 13:28:08.314731"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/40/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"40"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.5ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 40], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.5ms)
Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.7ms) Started DELETE “/veterinarians/41” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#destroy as HTML
Parameters: {"id"=>"41"}
[1m[36mVeterinarian Load (0.1ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Destroy (0.2ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 41]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.5ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]] [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]] [1m[36mCACHE VeterinaryOffice Load (0.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.6ms)
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.328463"], ["updated_at", "2021-10-27 13:28:08.328463"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.329723"], ["updated_at", "2021-10-27 13:28:08.329723"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 42], ["created_at", "2021-10-27 13:28:08.331218"], ["updated_at", "2021-10-27 13:28:08.331218"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 42], ["created_at", "2021-10-27 13:28:08.332750"], ["updated_at", "2021-10-27 13:28:08.332750"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 42], ["created_at", "2021-10-27 13:28:08.334368"], ["updated_at", "2021-10-27 13:28:08.334368"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 43], ["created_at", "2021-10-27 13:28:08.335556"], ["updated_at", "2021-10-27 13:28:08.335556"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 43], ["created_at", "2021-10-27 13:28:08.336720"], ["updated_at", "2021-10-27 13:28:08.336720"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/42/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"42"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.6ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 42], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.7ms) Started GET “/veterinary_offices/42/veterinarians/new” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"42"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.346762"], ["updated_at", "2021-10-27 13:28:08.346762"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.347977"], ["updated_at", "2021-10-27 13:28:08.347977"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 44], ["created_at", "2021-10-27 13:28:08.349508"], ["updated_at", "2021-10-27 13:28:08.349508"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 44], ["created_at", "2021-10-27 13:28:08.351105"], ["updated_at", "2021-10-27 13:28:08.351105"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 44], ["created_at", "2021-10-27 13:28:08.352671"], ["updated_at", "2021-10-27 13:28:08.352671"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 45], ["created_at", "2021-10-27 13:28:08.354180"], ["updated_at", "2021-10-27 13:28:08.354180"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 45], ["created_at", "2021-10-27 13:28:08.355690"], ["updated_at", "2021-10-27 13:28:08.355690"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/44/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"44"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 44], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.362526"], ["updated_at", "2021-10-27 13:28:08.362526"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.363582"], ["updated_at", "2021-10-27 13:28:08.363582"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 46], ["created_at", "2021-10-27 13:28:08.365514"], ["updated_at", "2021-10-27 13:28:08.365514"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 46], ["created_at", "2021-10-27 13:28:08.367795"], ["updated_at", "2021-10-27 13:28:08.367795"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 46], ["created_at", "2021-10-27 13:28:08.369034"], ["updated_at", "2021-10-27 13:28:08.369034"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 47], ["created_at", "2021-10-27 13:28:08.370208"], ["updated_at", "2021-10-27 13:28:08.370208"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 47], ["created_at", "2021-10-27 13:28:08.371300"], ["updated_at", "2021-10-27 13:28:08.371300"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/46/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"46"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.1ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 46], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms) Started GET “/veterinary_offices/46/veterinarians?utf8=%E2%9C%93&review_rating=5&commit=Filter” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"utf8"=>"✓", "review_rating"=>"5", "commit"=>"Filter", "veterinary_office_id"=>"46"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.9ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 AND (review_rating >= '5')[0m [["veterinary_office_id", 46], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.7ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 1.1ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.386204"], ["updated_at", "2021-10-27 13:28:08.386204"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.387470"], ["updated_at", "2021-10-27 13:28:08.387470"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 48], ["created_at", "2021-10-27 13:28:08.389074"], ["updated_at", "2021-10-27 13:28:08.389074"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 48], ["created_at", "2021-10-27 13:28:08.390377"], ["updated_at", "2021-10-27 13:28:08.390377"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 48], ["created_at", "2021-10-27 13:28:08.392007"], ["updated_at", "2021-10-27 13:28:08.392007"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 49], ["created_at", "2021-10-27 13:28:08.393448"], ["updated_at", "2021-10-27 13:28:08.393448"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 49], ["created_at", "2021-10-27 13:28:08.394883"], ["updated_at", "2021-10-27 13:28:08.394883"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/49/veterinarians” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"49"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.1ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 49], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.2ms) Started GET “/veterinary_offices/49/veterinarians?sort=alphabetical” for 127.0.0.1 at 2021-10-27 07:28:08 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"sort"=>"alphabetical", "veterinary_office_id"=>"49"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 ORDER BY "veterinarians"."name" ASC[0m [["veterinary_office_id", 49], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:28:08.413997"], ["updated_at", "2021-10-27 13:28:08.413997"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 116], ["created_at", "2021-10-27 13:28:08.416163"], ["updated_at", "2021-10-27 13:28:08.416163"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 116], ["created_at", "2021-10-27 13:28:08.417342"], ["updated_at", "2021-10-27 13:28:08.417342"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 116], ["created_at", "2021-10-27 13:28:08.418376"], ["updated_at", "2021-10-27 13:28:08.418376"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:28:08.419633"], ["updated_at", "2021-10-27 13:28:08.419633"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 219], ["application_id", 64], ["created_at", "2021-10-27 13:28:08.421286"], ["updated_at", "2021-10-27 13:28:08.421286"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.7ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 220], ["application_id", 64], ["created_at", "2021-10-27 13:28:08.422622"], ["updated_at", "2021-10-27 13:28:08.422622"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 64)[0m
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 64)[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:28:08.429284"], ["updated_at", "2021-10-27 13:28:08.429284"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 117], ["created_at", "2021-10-27 13:28:08.430556"], ["updated_at", "2021-10-27 13:28:08.430556"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 117], ["created_at", "2021-10-27 13:28:08.431990"], ["updated_at", "2021-10-27 13:28:08.431990"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 117], ["created_at", "2021-10-27 13:28:08.433009"], ["updated_at", "2021-10-27 13:28:08.433009"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:28:08.433897"], ["updated_at", "2021-10-27 13:28:08.433897"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.3ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 222], ["application_id", 65], ["created_at", "2021-10-27 13:28:08.435616"], ["updated_at", "2021-10-27 13:28:08.435616"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.2ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 223], ["application_id", 65], ["created_at", "2021-10-27 13:28:08.436838"], ["updated_at", "2021-10-27 13:28:08.436838"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:28:08.438828"], ["updated_at", "2021-10-27 13:28:08.438828"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 118], ["created_at", "2021-10-27 13:28:08.440187"], ["updated_at", "2021-10-27 13:28:08.440187"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 118], ["created_at", "2021-10-27 13:28:08.441254"], ["updated_at", "2021-10-27 13:28:08.441254"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 118], ["created_at", "2021-10-27 13:28:08.442330"], ["updated_at", "2021-10-27 13:28:08.442330"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:28:08.443517"], ["updated_at", "2021-10-27 13:28:08.443517"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.3ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 225], ["application_id", 66], ["created_at", "2021-10-27 13:28:08.445053"], ["updated_at", "2021-10-27 13:28:08.445053"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 226], ["application_id", 66], ["created_at", "2021-10-27 13:28:08.446302"], ["updated_at", "2021-10-27 13:28:08.446302"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 66], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.448821"], ["updated_at", "2021-10-27 13:28:08.448821"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 119], ["created_at", "2021-10-27 13:28:08.450083"], ["updated_at", "2021-10-27 13:28:08.450083"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 119], ["created_at", "2021-10-27 13:28:08.451519"], ["updated_at", "2021-10-27 13:28:08.451519"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 119], ["created_at", "2021-10-27 13:28:08.452660"], ["updated_at", "2021-10-27 13:28:08.452660"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.457224"], ["updated_at", "2021-10-27 13:28:08.457224"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 120], ["created_at", "2021-10-27 13:28:08.458790"], ["updated_at", "2021-10-27 13:28:08.458790"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 120], ["created_at", "2021-10-27 13:28:08.459961"], ["updated_at", "2021-10-27 13:28:08.459961"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 120], ["created_at", "2021-10-27 13:28:08.461048"], ["updated_at", "2021-10-27 13:28:08.461048"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.462660"], ["updated_at", "2021-10-27 13:28:08.462660"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 121], ["created_at", "2021-10-27 13:28:08.463849"], ["updated_at", "2021-10-27 13:28:08.463849"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 121], ["created_at", "2021-10-27 13:28:08.464952"], ["updated_at", "2021-10-27 13:28:08.464952"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 121], ["created_at", "2021-10-27 13:28:08.466027"], ["updated_at", "2021-10-27 13:28:08.466027"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.468726"], ["updated_at", "2021-10-27 13:28:08.468726"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 122], ["created_at", "2021-10-27 13:28:08.470145"], ["updated_at", "2021-10-27 13:28:08.470145"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 122], ["created_at", "2021-10-27 13:28:08.471341"], ["updated_at", "2021-10-27 13:28:08.471341"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 122], ["created_at", "2021-10-27 13:28:08.472442"], ["updated_at", "2021-10-27 13:28:08.472442"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.478303"], ["updated_at", "2021-10-27 13:28:08.478303"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 123], ["created_at", "2021-10-27 13:28:08.480140"], ["updated_at", "2021-10-27 13:28:08.480140"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 123], ["created_at", "2021-10-27 13:28:08.481486"], ["updated_at", "2021-10-27 13:28:08.481486"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 123], ["created_at", "2021-10-27 13:28:08.482535"], ["updated_at", "2021-10-27 13:28:08.482535"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.486900"], ["updated_at", "2021-10-27 13:28:08.486900"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 124], ["created_at", "2021-10-27 13:28:08.488768"], ["updated_at", "2021-10-27 13:28:08.488768"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 124], ["created_at", "2021-10-27 13:28:08.489923"], ["updated_at", "2021-10-27 13:28:08.489923"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 124], ["created_at", "2021-10-27 13:28:08.490952"], ["updated_at", "2021-10-27 13:28:08.490952"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.493984"], ["updated_at", "2021-10-27 13:28:08.493984"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 125], ["created_at", "2021-10-27 13:28:08.495281"], ["updated_at", "2021-10-27 13:28:08.495281"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 125], ["created_at", "2021-10-27 13:28:08.497083"], ["updated_at", "2021-10-27 13:28:08.497083"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 125], ["created_at", "2021-10-27 13:28:08.498548"], ["updated_at", "2021-10-27 13:28:08.498548"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Claw%')[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.501158"], ["updated_at", "2021-10-27 13:28:08.501158"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 126], ["created_at", "2021-10-27 13:28:08.502842"], ["updated_at", "2021-10-27 13:28:08.502842"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 126], ["created_at", "2021-10-27 13:28:08.504292"], ["updated_at", "2021-10-27 13:28:08.504292"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 126], ["created_at", "2021-10-27 13:28:08.505656"], ["updated_at", "2021-10-27 13:28:08.505656"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.508259"], ["updated_at", "2021-10-27 13:28:08.508259"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 127], ["created_at", "2021-10-27 13:28:08.509644"], ["updated_at", "2021-10-27 13:28:08.509644"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 127], ["created_at", "2021-10-27 13:28:08.511131"], ["updated_at", "2021-10-27 13:28:08.511131"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 127], ["created_at", "2021-10-27 13:28:08.513476"], ["updated_at", "2021-10-27 13:28:08.513476"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.515396"], ["updated_at", "2021-10-27 13:28:08.515396"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:08.516249"], ["updated_at", "2021-10-27 13:28:08.516249"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:08.517009"], ["updated_at", "2021-10-27 13:28:08.517009"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 128], ["created_at", "2021-10-27 13:28:08.518090"], ["updated_at", "2021-10-27 13:28:08.518090"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 128], ["created_at", "2021-10-27 13:28:08.519065"], ["updated_at", "2021-10-27 13:28:08.519065"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 130], ["created_at", "2021-10-27 13:28:08.520103"], ["updated_at", "2021-10-27 13:28:08.520103"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 128], ["created_at", "2021-10-27 13:28:08.521175"], ["updated_at", "2021-10-27 13:28:08.521175"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.523255"], ["updated_at", "2021-10-27 13:28:08.523255"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:08.524139"], ["updated_at", "2021-10-27 13:28:08.524139"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:08.524955"], ["updated_at", "2021-10-27 13:28:08.524955"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 131], ["created_at", "2021-10-27 13:28:08.526316"], ["updated_at", "2021-10-27 13:28:08.526316"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 131], ["created_at", "2021-10-27 13:28:08.527934"], ["updated_at", "2021-10-27 13:28:08.527934"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 133], ["created_at", "2021-10-27 13:28:08.529390"], ["updated_at", "2021-10-27 13:28:08.529390"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 131], ["created_at", "2021-10-27 13:28:08.531072"], ["updated_at", "2021-10-27 13:28:08.531072"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.536597"], ["updated_at", "2021-10-27 13:28:08.536597"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:08.537627"], ["updated_at", "2021-10-27 13:28:08.537627"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:08.538579"], ["updated_at", "2021-10-27 13:28:08.538579"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 134], ["created_at", "2021-10-27 13:28:08.539942"], ["updated_at", "2021-10-27 13:28:08.539942"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 134], ["created_at", "2021-10-27 13:28:08.541723"], ["updated_at", "2021-10-27 13:28:08.541723"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 136], ["created_at", "2021-10-27 13:28:08.543030"], ["updated_at", "2021-10-27 13:28:08.543030"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 134], ["created_at", "2021-10-27 13:28:08.544233"], ["updated_at", "2021-10-27 13:28:08.544233"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.550316"], ["updated_at", "2021-10-27 13:28:08.550316"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:08.551525"], ["updated_at", "2021-10-27 13:28:08.551525"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:08.553244"], ["updated_at", "2021-10-27 13:28:08.553244"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 137], ["created_at", "2021-10-27 13:28:08.555017"], ["updated_at", "2021-10-27 13:28:08.555017"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 137], ["created_at", "2021-10-27 13:28:08.556300"], ["updated_at", "2021-10-27 13:28:08.556300"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 139], ["created_at", "2021-10-27 13:28:08.557536"], ["updated_at", "2021-10-27 13:28:08.557536"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 137], ["created_at", "2021-10-27 13:28:08.558574"], ["updated_at", "2021-10-27 13:28:08.558574"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.562684"], ["updated_at", "2021-10-27 13:28:08.562684"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:08.564234"], ["updated_at", "2021-10-27 13:28:08.564234"]]
[1m[35m (0.5ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:08.566055"], ["updated_at", "2021-10-27 13:28:08.566055"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 140], ["created_at", "2021-10-27 13:28:08.567868"], ["updated_at", "2021-10-27 13:28:08.567868"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 140], ["created_at", "2021-10-27 13:28:08.569188"], ["updated_at", "2021-10-27 13:28:08.569188"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 142], ["created_at", "2021-10-27 13:28:08.570630"], ["updated_at", "2021-10-27 13:28:08.570630"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 140], ["created_at", "2021-10-27 13:28:08.571784"], ["updated_at", "2021-10-27 13:28:08.571784"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.577434"], ["updated_at", "2021-10-27 13:28:08.577434"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:08.578668"], ["updated_at", "2021-10-27 13:28:08.578668"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.9ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:08.579633"], ["updated_at", "2021-10-27 13:28:08.579633"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 143], ["created_at", "2021-10-27 13:28:08.581576"], ["updated_at", "2021-10-27 13:28:08.581576"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 143], ["created_at", "2021-10-27 13:28:08.582679"], ["updated_at", "2021-10-27 13:28:08.582679"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 145], ["created_at", "2021-10-27 13:28:08.583779"], ["updated_at", "2021-10-27 13:28:08.583779"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 143], ["created_at", "2021-10-27 13:28:08.584949"], ["updated_at", "2021-10-27 13:28:08.584949"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.587482"], ["updated_at", "2021-10-27 13:28:08.587482"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:08.588396"], ["updated_at", "2021-10-27 13:28:08.588396"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:08.589509"], ["updated_at", "2021-10-27 13:28:08.589509"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 146], ["created_at", "2021-10-27 13:28:08.590877"], ["updated_at", "2021-10-27 13:28:08.590877"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 146], ["created_at", "2021-10-27 13:28:08.592014"], ["updated_at", "2021-10-27 13:28:08.592014"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 148], ["created_at", "2021-10-27 13:28:08.593138"], ["updated_at", "2021-10-27 13:28:08.593138"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (3.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 146], ["created_at", "2021-10-27 13:28:08.594205"], ["updated_at", "2021-10-27 13:28:08.594205"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.599774"], ["updated_at", "2021-10-27 13:28:08.599774"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:08.600905"], ["updated_at", "2021-10-27 13:28:08.600905"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:08.601973"], ["updated_at", "2021-10-27 13:28:08.601973"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 149], ["created_at", "2021-10-27 13:28:08.603216"], ["updated_at", "2021-10-27 13:28:08.603216"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 149], ["created_at", "2021-10-27 13:28:08.604341"], ["updated_at", "2021-10-27 13:28:08.604341"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 151], ["created_at", "2021-10-27 13:28:08.605977"], ["updated_at", "2021-10-27 13:28:08.605977"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 149], ["created_at", "2021-10-27 13:28:08.607145"], ["updated_at", "2021-10-27 13:28:08.607145"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (1.4ms)[0m [1m[34mSELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.610593"], ["updated_at", "2021-10-27 13:28:08.610593"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:08.611505"], ["updated_at", "2021-10-27 13:28:08.611505"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:08.612661"], ["updated_at", "2021-10-27 13:28:08.612661"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 152], ["created_at", "2021-10-27 13:28:08.613995"], ["updated_at", "2021-10-27 13:28:08.613995"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 152], ["created_at", "2021-10-27 13:28:08.615289"], ["updated_at", "2021-10-27 13:28:08.615289"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 154], ["created_at", "2021-10-27 13:28:08.616829"], ["updated_at", "2021-10-27 13:28:08.616829"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 152], ["created_at", "2021-10-27 13:28:08.618007"], ["updated_at", "2021-10-27 13:28:08.618007"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 152], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.620498"], ["updated_at", "2021-10-27 13:28:08.620498"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:08.621525"], ["updated_at", "2021-10-27 13:28:08.621525"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:08.622537"], ["updated_at", "2021-10-27 13:28:08.622537"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 155], ["created_at", "2021-10-27 13:28:08.624049"], ["updated_at", "2021-10-27 13:28:08.624049"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 155], ["created_at", "2021-10-27 13:28:08.625818"], ["updated_at", "2021-10-27 13:28:08.625818"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 157], ["created_at", "2021-10-27 13:28:08.627326"], ["updated_at", "2021-10-27 13:28:08.627326"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 155], ["created_at", "2021-10-27 13:28:08.628524"], ["updated_at", "2021-10-27 13:28:08.628524"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC[0m [["shelter_id", 155], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.631183"], ["updated_at", "2021-10-27 13:28:08.631183"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:08.632221"], ["updated_at", "2021-10-27 13:28:08.632221"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:08.633272"], ["updated_at", "2021-10-27 13:28:08.633272"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 158], ["created_at", "2021-10-27 13:28:08.634630"], ["updated_at", "2021-10-27 13:28:08.634630"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 158], ["created_at", "2021-10-27 13:28:08.635915"], ["updated_at", "2021-10-27 13:28:08.635915"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 160], ["created_at", "2021-10-27 13:28:08.637216"], ["updated_at", "2021-10-27 13:28:08.637216"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 158], ["created_at", "2021-10-27 13:28:08.638278"], ["updated_at", "2021-10-27 13:28:08.638278"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)[0m [["shelter_id", 158], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:28:08.641785"], ["updated_at", "2021-10-27 13:28:08.641785"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:28:08.643117"], ["updated_at", "2021-10-27 13:28:08.643117"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:28:08.644025"], ["updated_at", "2021-10-27 13:28:08.644025"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 161], ["created_at", "2021-10-27 13:28:08.645436"], ["updated_at", "2021-10-27 13:28:08.645436"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 161], ["created_at", "2021-10-27 13:28:08.646609"], ["updated_at", "2021-10-27 13:28:08.646609"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 163], ["created_at", "2021-10-27 13:28:08.647685"], ["updated_at", "2021-10-27 13:28:08.647685"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 161], ["created_at", "2021-10-27 13:28:08.648632"], ["updated_at", "2021-10-27 13:28:08.648632"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 161]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.650871"], ["updated_at", "2021-10-27 13:28:08.650871"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 50], ["created_at", "2021-10-27 13:28:08.652153"], ["updated_at", "2021-10-27 13:28:08.652153"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 50], ["created_at", "2021-10-27 13:28:08.653409"], ["updated_at", "2021-10-27 13:28:08.653409"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 50], ["created_at", "2021-10-27 13:28:08.654365"], ["updated_at", "2021-10-27 13:28:08.654365"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 50], ["created_at", "2021-10-27 13:28:08.655349"], ["updated_at", "2021-10-27 13:28:08.655349"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.659027"], ["updated_at", "2021-10-27 13:28:08.659027"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 51], ["created_at", "2021-10-27 13:28:08.660648"], ["updated_at", "2021-10-27 13:28:08.660648"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 51], ["created_at", "2021-10-27 13:28:08.661698"], ["updated_at", "2021-10-27 13:28:08.661698"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 51], ["created_at", "2021-10-27 13:28:08.662683"], ["updated_at", "2021-10-27 13:28:08.662683"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 51], ["created_at", "2021-10-27 13:28:08.663659"], ["updated_at", "2021-10-27 13:28:08.663659"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.668883"], ["updated_at", "2021-10-27 13:28:08.668883"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 52], ["created_at", "2021-10-27 13:28:08.670088"], ["updated_at", "2021-10-27 13:28:08.670088"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 52], ["created_at", "2021-10-27 13:28:08.671168"], ["updated_at", "2021-10-27 13:28:08.671168"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 52], ["created_at", "2021-10-27 13:28:08.672315"], ["updated_at", "2021-10-27 13:28:08.672315"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 52], ["created_at", "2021-10-27 13:28:08.673712"], ["updated_at", "2021-10-27 13:28:08.673712"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.677551"], ["updated_at", "2021-10-27 13:28:08.677551"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 53], ["created_at", "2021-10-27 13:28:08.678871"], ["updated_at", "2021-10-27 13:28:08.678871"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 53], ["created_at", "2021-10-27 13:28:08.680295"], ["updated_at", "2021-10-27 13:28:08.680295"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 53], ["created_at", "2021-10-27 13:28:08.681836"], ["updated_at", "2021-10-27 13:28:08.681836"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 53], ["created_at", "2021-10-27 13:28:08.683201"], ["updated_at", "2021-10-27 13:28:08.683201"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.686411"], ["updated_at", "2021-10-27 13:28:08.686411"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 54], ["created_at", "2021-10-27 13:28:08.688101"], ["updated_at", "2021-10-27 13:28:08.688101"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 54], ["created_at", "2021-10-27 13:28:08.689417"], ["updated_at", "2021-10-27 13:28:08.689417"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 54], ["created_at", "2021-10-27 13:28:08.690454"], ["updated_at", "2021-10-27 13:28:08.690454"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 54], ["created_at", "2021-10-27 13:28:08.691478"], ["updated_at", "2021-10-27 13:28:08.691478"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE (name ILIKE '%Ta%')[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.693791"], ["updated_at", "2021-10-27 13:28:08.693791"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 55], ["created_at", "2021-10-27 13:28:08.694893"], ["updated_at", "2021-10-27 13:28:08.694893"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 55], ["created_at", "2021-10-27 13:28:08.696044"], ["updated_at", "2021-10-27 13:28:08.696044"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 55], ["created_at", "2021-10-27 13:28:08.697031"], ["updated_at", "2021-10-27 13:28:08.697031"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 55], ["created_at", "2021-10-27 13:28:08.698052"], ["updated_at", "2021-10-27 13:28:08.698052"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.700617"], ["updated_at", "2021-10-27 13:28:08.700617"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 56], ["created_at", "2021-10-27 13:28:08.702371"], ["updated_at", "2021-10-27 13:28:08.702371"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.5ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 56], ["created_at", "2021-10-27 13:28:08.704030"], ["updated_at", "2021-10-27 13:28:08.704030"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 56], ["created_at", "2021-10-27 13:28:08.705174"], ["updated_at", "2021-10-27 13:28:08.705174"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 56], ["created_at", "2021-10-27 13:28:08.706220"], ["updated_at", "2021-10-27 13:28:08.706220"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.708135"], ["updated_at", "2021-10-27 13:28:08.708135"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.709053"], ["updated_at", "2021-10-27 13:28:08.709053"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 57], ["created_at", "2021-10-27 13:28:08.710497"], ["updated_at", "2021-10-27 13:28:08.710497"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 57], ["created_at", "2021-10-27 13:28:08.711907"], ["updated_at", "2021-10-27 13:28:08.711907"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 57], ["created_at", "2021-10-27 13:28:08.713367"], ["updated_at", "2021-10-27 13:28:08.713367"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 58], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 58], ["created_at", "2021-10-27 13:28:08.714820"], ["updated_at", "2021-10-27 13:28:08.714820"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.717159"], ["updated_at", "2021-10-27 13:28:08.717159"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.718290"], ["updated_at", "2021-10-27 13:28:08.718290"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 59], ["created_at", "2021-10-27 13:28:08.719715"], ["updated_at", "2021-10-27 13:28:08.719715"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 59], ["created_at", "2021-10-27 13:28:08.721026"], ["updated_at", "2021-10-27 13:28:08.721026"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 59], ["created_at", "2021-10-27 13:28:08.722280"], ["updated_at", "2021-10-27 13:28:08.722280"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 60], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 60], ["created_at", "2021-10-27 13:28:08.724006"], ["updated_at", "2021-10-27 13:28:08.724006"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.729195"], ["updated_at", "2021-10-27 13:28:08.729195"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.730208"], ["updated_at", "2021-10-27 13:28:08.730208"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 61], ["created_at", "2021-10-27 13:28:08.731818"], ["updated_at", "2021-10-27 13:28:08.731818"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 61], ["created_at", "2021-10-27 13:28:08.733367"], ["updated_at", "2021-10-27 13:28:08.733367"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 61], ["created_at", "2021-10-27 13:28:08.734625"], ["updated_at", "2021-10-27 13:28:08.734625"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 62], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 62], ["created_at", "2021-10-27 13:28:08.735833"], ["updated_at", "2021-10-27 13:28:08.735833"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.739507"], ["updated_at", "2021-10-27 13:28:08.739507"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.740474"], ["updated_at", "2021-10-27 13:28:08.740474"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 63], ["created_at", "2021-10-27 13:28:08.742078"], ["updated_at", "2021-10-27 13:28:08.742078"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 63], ["created_at", "2021-10-27 13:28:08.744770"], ["updated_at", "2021-10-27 13:28:08.744770"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]]
[1m[36mVeterinarian Create (5.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 63], ["created_at", "2021-10-27 13:28:08.763717"], ["updated_at", "2021-10-27 13:28:08.763717"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 64], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 64], ["created_at", "2021-10-27 13:28:08.770777"], ["updated_at", "2021-10-27 13:28:08.770777"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.774078"], ["updated_at", "2021-10-27 13:28:08.774078"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.775177"], ["updated_at", "2021-10-27 13:28:08.775177"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 65], ["created_at", "2021-10-27 13:28:08.776743"], ["updated_at", "2021-10-27 13:28:08.776743"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 65], ["created_at", "2021-10-27 13:28:08.778242"], ["updated_at", "2021-10-27 13:28:08.778242"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 65], ["created_at", "2021-10-27 13:28:08.779526"], ["updated_at", "2021-10-27 13:28:08.779526"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 66], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 66], ["created_at", "2021-10-27 13:28:08.781028"], ["updated_at", "2021-10-27 13:28:08.781028"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.5ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE (name ILIKE '%Vets%')[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.783842"], ["updated_at", "2021-10-27 13:28:08.783842"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.784797"], ["updated_at", "2021-10-27 13:28:08.784797"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 67], ["created_at", "2021-10-27 13:28:08.786165"], ["updated_at", "2021-10-27 13:28:08.786165"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 67], ["created_at", "2021-10-27 13:28:08.787776"], ["updated_at", "2021-10-27 13:28:08.787776"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 67], ["created_at", "2021-10-27 13:28:08.789058"], ["updated_at", "2021-10-27 13:28:08.789058"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 68], ["created_at", "2021-10-27 13:28:08.790650"], ["updated_at", "2021-10-27 13:28:08.790650"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.792953"], ["updated_at", "2021-10-27 13:28:08.792953"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.793973"], ["updated_at", "2021-10-27 13:28:08.793973"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 69], ["created_at", "2021-10-27 13:28:08.795555"], ["updated_at", "2021-10-27 13:28:08.795555"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 69], ["created_at", "2021-10-27 13:28:08.796866"], ["updated_at", "2021-10-27 13:28:08.796866"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 69], ["created_at", "2021-10-27 13:28:08.798266"], ["updated_at", "2021-10-27 13:28:08.798266"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 70], ["created_at", "2021-10-27 13:28:08.799806"], ["updated_at", "2021-10-27 13:28:08.799806"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.7ms)[0m [1m[34mSELECT veterinary_offices.*, count(veterinarians.id) AS vets_count FROM "veterinary_offices" LEFT OUTER JOIN veterinarians ON veterinarians.veterinary_office_id = veterinary_offices.id GROUP BY veterinary_offices.id ORDER BY vets_count DESC[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.802506"], ["updated_at", "2021-10-27 13:28:08.802506"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.803586"], ["updated_at", "2021-10-27 13:28:08.803586"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 71], ["created_at", "2021-10-27 13:28:08.804852"], ["updated_at", "2021-10-27 13:28:08.804852"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 71], ["created_at", "2021-10-27 13:28:08.806385"], ["updated_at", "2021-10-27 13:28:08.806385"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 71], ["created_at", "2021-10-27 13:28:08.807900"], ["updated_at", "2021-10-27 13:28:08.807900"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 72], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 72], ["created_at", "2021-10-27 13:28:08.809177"], ["updated_at", "2021-10-27 13:28:08.809177"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.9ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 71]]
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 72]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.812712"], ["updated_at", "2021-10-27 13:28:08.812712"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.813715"], ["updated_at", "2021-10-27 13:28:08.813715"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 73], ["created_at", "2021-10-27 13:28:08.815258"], ["updated_at", "2021-10-27 13:28:08.815258"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 73], ["created_at", "2021-10-27 13:28:08.816537"], ["updated_at", "2021-10-27 13:28:08.816537"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 73], ["created_at", "2021-10-27 13:28:08.818006"], ["updated_at", "2021-10-27 13:28:08.818006"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 74], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 74], ["created_at", "2021-10-27 13:28:08.819545"], ["updated_at", "2021-10-27 13:28:08.819545"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 ORDER BY "veterinarians"."name" ASC[0m [["veterinary_office_id", 73], ["on_call", true]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.821995"], ["updated_at", "2021-10-27 13:28:08.821995"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.823130"], ["updated_at", "2021-10-27 13:28:08.823130"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 75], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 75], ["created_at", "2021-10-27 13:28:08.824662"], ["updated_at", "2021-10-27 13:28:08.824662"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 75], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 75], ["created_at", "2021-10-27 13:28:08.826159"], ["updated_at", "2021-10-27 13:28:08.826159"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 75], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 75], ["created_at", "2021-10-27 13:28:08.827461"], ["updated_at", "2021-10-27 13:28:08.827461"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 76], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 76], ["created_at", "2021-10-27 13:28:08.828749"], ["updated_at", "2021-10-27 13:28:08.828749"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 75], ["on_call", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:28:08.831486"], ["updated_at", "2021-10-27 13:28:08.831486"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:28:08.832699"], ["updated_at", "2021-10-27 13:28:08.832699"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 77], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 77], ["created_at", "2021-10-27 13:28:08.834345"], ["updated_at", "2021-10-27 13:28:08.834345"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 77], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 77], ["created_at", "2021-10-27 13:28:08.836072"], ["updated_at", "2021-10-27 13:28:08.836072"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 77], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 77], ["created_at", "2021-10-27 13:28:08.837719"], ["updated_at", "2021-10-27 13:28:08.837719"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 78], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 78], ["created_at", "2021-10-27 13:28:08.839424"], ["updated_at", "2021-10-27 13:28:08.839424"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 AND (review_rating >= 9)[0m [["veterinary_office_id", 77], ["on_call", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.4ms)
Completed 200 OK in 86ms (Views: 83.0ms | ActiveRecord: 0.0ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (5.6ms)
Completed 200 OK in 10ms (Views: 5.7ms | ActiveRecord: 3.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.0ms)
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (1.6ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (2.4ms)
Completed 200 OK in 9ms (Views: 1.6ms | ActiveRecord: 5.7ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.0ms)
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.8ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (1.3ms)
Completed 200 OK in 6ms (Views: 1.3ms | ActiveRecord: 3.7ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.0ms)
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (1.0ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] Rendered veterinarians/index.html.erb within layouts/application (1.8ms)
Completed 200 OK in 6ms (Views: 1.7ms | ActiveRecord: 3.7ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:30:04.845260"], ["updated_at", "2021-10-27 13:30:04.845260"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 164], ["created_at", "2021-10-27 13:30:04.884902"], ["updated_at", "2021-10-27 13:30:04.884902"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 164], ["created_at", "2021-10-27 13:30:04.887143"], ["updated_at", "2021-10-27 13:30:04.887143"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 164], ["created_at", "2021-10-27 13:30:04.888502"], ["updated_at", "2021-10-27 13:30:04.888502"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:30:04.906480"], ["updated_at", "2021-10-27 13:30:04.906480"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.2ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 303], ["application_id", 67], ["created_at", "2021-10-27 13:30:04.923533"], ["updated_at", "2021-10-27 13:30:04.923533"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 304], ["application_id", 67], ["created_at", "2021-10-27 13:30:04.925906"], ["updated_at", "2021-10-27 13:30:04.925906"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/67” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"67"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 67)[0m
Rendered applications/show.html.erb within layouts/application (5.1ms)
Completed 200 OK in 9ms (Views: 4.5ms | ActiveRecord: 1.9ms) Started GET “/pets/303” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"303"}
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 303], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 164], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.5ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.6ms) Started GET “/applications/67” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"67"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 67)[0m
Rendered applications/show.html.erb within layouts/application (1.2ms)
Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.2ms) Started GET “/pets/304” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"304"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 304], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 164], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:30:04.957047"], ["updated_at", "2021-10-27 13:30:04.957047"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 165], ["created_at", "2021-10-27 13:30:04.958541"], ["updated_at", "2021-10-27 13:30:04.958541"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 165], ["created_at", "2021-10-27 13:30:04.959750"], ["updated_at", "2021-10-27 13:30:04.959750"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 165], ["created_at", "2021-10-27 13:30:04.960873"], ["updated_at", "2021-10-27 13:30:04.960873"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:30:04.962051"], ["updated_at", "2021-10-27 13:30:04.962051"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/68” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"68"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 68)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 68)[0m
Rendered applications/show.html.erb within layouts/application (1.5ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 1.1ms) Started GET “/applications/68?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"68"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 68)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 68)[0m
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (3.1ms)
Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 1.6ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:30:04.983539"], ["updated_at", "2021-10-27 13:30:04.983539"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 166], ["created_at", "2021-10-27 13:30:04.984891"], ["updated_at", "2021-10-27 13:30:04.984891"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:30:04.986109"], ["updated_at", "2021-10-27 13:30:04.986109"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/69” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"69"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)[0m
Rendered applications/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.9ms) Started GET “/applications/69?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-27 07:30:04 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"69"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)[0m
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (1.6ms)
Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.9ms) Started POST “/application_pets?app_id=69&pet_id=309” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"69", "pet_id"=>"309"}
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 309], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.9ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 309], ["application_id", 69], ["created_at", "2021-10-27 13:30:05.004399"], ["updated_at", "2021-10-27 13:30:05.004399"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/69 Completed 302 Found in 4ms (ActiveRecord: 1.7ms) Started GET “/applications/69” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"69"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)[0m
Rendered applications/show.html.erb within layouts/application (2.1ms)
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 1.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:30:05.012545"], ["updated_at", "2021-10-27 13:30:05.012545"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 167], ["created_at", "2021-10-27 13:30:05.014159"], ["updated_at", "2021-10-27 13:30:05.014159"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 167], ["created_at", "2021-10-27 13:30:05.015595"], ["updated_at", "2021-10-27 13:30:05.015595"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 167], ["created_at", "2021-10-27 13:30:05.016914"], ["updated_at", "2021-10-27 13:30:05.016914"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:30:05.018099"], ["updated_at", "2021-10-27 13:30:05.018099"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/70” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"70"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 70)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 70)[0m
Rendered applications/show.html.erb within layouts/application (2.0ms)
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 1.3ms) Started GET “/applications/70?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"70"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 70)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 70)[0m
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')[0m
Rendered applications/show.html.erb within layouts/application (2.1ms)
Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 1.3ms) Started POST “/application_pets?app_id=70&pet_id=312” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"70", "pet_id"=>"312"}
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 312], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.9ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 312], ["application_id", 70], ["created_at", "2021-10-27 13:30:05.033748"], ["updated_at", "2021-10-27 13:30:05.033748"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/70 Completed 302 Found in 3ms (ActiveRecord: 1.5ms) Started GET “/applications/70” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"70"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 70)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 70)[0m
Rendered applications/show.html.erb within layouts/application (1.8ms)
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 1.2ms) Started PATCH “/applications/70” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by ApplicationsController#update as HTML
Parameters: {"utf8"=>"✓", "why"=>"I love dogs", "commit"=>"Submit Application", "id"=>"70"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit, :id
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mApplication Update (0.6ms)[0m [1m[33mUPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3[0m [["application_status", "Pending"], ["updated_at", "2021-10-27 13:30:05.045103"], ["id", 70]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/70 Completed 302 Found in 2ms (ActiveRecord: 1.1ms) Started GET “/applications/70” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"70"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 70)[0m
Rendered applications/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.3ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:30:05.061720"], ["updated_at", "2021-10-27 13:30:05.061720"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/71” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"71"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 71)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 71)[0m
Rendered applications/show.html.erb within layouts/application (1.8ms)
Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 1.2ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.069982"], ["updated_at", "2021-10-27 13:30:05.069982"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/168/pets/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"168"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 168], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (1.8ms)
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.2ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.080098"], ["updated_at", "2021-10-27 13:30:05.080098"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/169/pets/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"169"}
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 169], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms) Started POST “/shelters/169/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"Bumblebee", "breed"=>"Welsh Corgi", "age"=>"1", "adoptable"=>"1", "commit"=>"Save ", "shelter_id"=>"169"}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 169], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "Welsh Corgi"], ["name", "Bumblebee"], ["shelter_id", 169], ["created_at", "2021-10-27 13:30:05.091209"], ["updated_at", "2021-10-27 13:30:05.091209"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Unpermitted parameters: :utf8, :commit Redirected to www.example.com/shelters/169/pets Completed 302 Found in 3ms (ActiveRecord: 1.3ms) Started GET “/shelters/169/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"169"}
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 169], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 169], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (2.2ms)
Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.6ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.100687"], ["updated_at", "2021-10-27 13:30:05.100687"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/170/pets/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"170"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 170], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms) Started POST “/shelters/170/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "breed"=>"", "age"=>"", "adoptable"=>"0", "commit"=>"Save ", "shelter_id"=>"170"}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 170], ["LIMIT", 1]] [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Unpermitted parameters: :utf8, :commit Redirected to www.example.com/shelters/170/pets/new Completed 302 Found in 3ms (ActiveRecord: 0.4ms) Started GET “/shelters/170/pets/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"170"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 170], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.1ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.116662"], ["updated_at", "2021-10-27 13:30:05.116662"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 171], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 171], ["created_at", "2021-10-27 13:30:05.118669"], ["updated_at", "2021-10-27 13:30:05.118669"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 171], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 171], ["created_at", "2021-10-27 13:30:05.120188"], ["updated_at", "2021-10-27 13:30:05.120188"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 171], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 171], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.134492"], ["updated_at", "2021-10-27 13:30:05.134492"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 172], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 172], ["created_at", "2021-10-27 13:30:05.136901"], ["updated_at", "2021-10-27 13:30:05.136901"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 172], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 172], ["created_at", "2021-10-27 13:30:05.138853"], ["updated_at", "2021-10-27 13:30:05.138853"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 172], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 172], ["created_at", "2021-10-27 13:30:05.140661"], ["updated_at", "2021-10-27 13:30:05.140661"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 172], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 172], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (2.4ms)
Completed 200 OK in 4ms (Views: 2.8ms | ActiveRecord: 0.5ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.153048"], ["updated_at", "2021-10-27 13:30:05.153048"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 173], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 173], ["created_at", "2021-10-27 13:30:05.157645"], ["updated_at", "2021-10-27 13:30:05.157645"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 173], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 173], ["created_at", "2021-10-27 13:30:05.159670"], ["updated_at", "2021-10-27 13:30:05.159670"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 173], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 173], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.8ms)
Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.5ms) Started GET “/pets/319/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"319"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 319], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (1.1ms)
Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.174741"], ["updated_at", "2021-10-27 13:30:05.174741"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 174], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 174], ["created_at", "2021-10-27 13:30:05.176923"], ["updated_at", "2021-10-27 13:30:05.176923"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 174], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 174], ["created_at", "2021-10-27 13:30:05.178723"], ["updated_at", "2021-10-27 13:30:05.178723"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 174], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 174], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.7ms)
Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.5ms) Started DELETE “/pets/321” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"321"}
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 321], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (1.1ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 321]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 1.8ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 174], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.7ms)
Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.207369"], ["updated_at", "2021-10-27 13:30:05.207369"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 175], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 175], ["created_at", "2021-10-27 13:30:05.209514"], ["updated_at", "2021-10-27 13:30:05.209514"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 175], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 175], ["created_at", "2021-10-27 13:30:05.211500"], ["updated_at", "2021-10-27 13:30:05.211500"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 175], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 175], ["created_at", "2021-10-27 13:30:05.214022"], ["updated_at", "2021-10-27 13:30:05.214022"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 175], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 175], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 175], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.9ms)
Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.2ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 175], ["LIMIT", 1]]
[1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 175], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (2.7ms)
Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.9ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by ApplicationsController#new as HTML
Rendering applications/new.html.erb within layouts/application Rendered applications/new.html.erb within layouts/application (1.7ms)
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms) Started POST “/applications” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by ApplicationsController#create as HTML
Parameters: {"utf8"=>"✓", "applicant_name"=>"Jacob Yarborough", "street_address"=>"789 South Street", "city"=>"Denver", "state"=>"CO", "zipcode"=>"80222", "why"=>"I love dogs", "commit"=>"Submit Application"}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "789 South Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80222"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:30:05.258573"], ["updated_at", "2021-10-27 13:30:05.258573"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Update (0.5ms)[0m [1m[33mUPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3[0m [["application_status", "In Progress"], ["updated_at", "2021-10-27 13:30:05.260004"], ["id", 72]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/72 Completed 302 Found in 3ms (ActiveRecord: 1.6ms) Started GET “/applications/72” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"72"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 72], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 72], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 72)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 72)[0m
Rendered applications/show.html.erb within layouts/application (1.7ms)
Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 1.3ms)
[1m[36mApplication Load (0.5ms)[0m [1m[34mSELECT "applications".* FROM "applications" ORDER BY "applications"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Mystery Building"], ["city", "Irvine CA"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.271120"], ["updated_at", "2021-10-27 13:30:05.271120"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 176], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 2], ["breed", "Great Dane"], ["name", "Scooby"], ["shelter_id", 176], ["created_at", "2021-10-27 13:30:05.272876"], ["updated_at", "2021-10-27 13:30:05.272876"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/326” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"326"}
[1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 326], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 176], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Mystery Building"], ["city", "Irvine CA"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.280408"], ["updated_at", "2021-10-27 13:30:05.280408"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 177], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "Great Dane"], ["name", "Scrappy"], ["shelter_id", 177], ["created_at", "2021-10-27 13:30:05.282132"], ["updated_at", "2021-10-27 13:30:05.282132"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/327” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"327"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 327], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 177], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms) Started DELETE “/pets/327” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"327"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 327], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (0.9ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 327]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 2ms (ActiveRecord: 1.3ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Hollywood shelter"], ["city", "Irvine, CA"], ["rank", 7], ["created_at", "2021-10-27 13:30:05.293373"], ["updated_at", "2021-10-27 13:30:05.293373"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 178], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "George Hairlesson"], ["shelter_id", 178], ["created_at", "2021-10-27 13:30:05.295203"], ["updated_at", "2021-10-27 13:30:05.295203"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/328/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"328"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 328], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Heavenly pets"], ["city", "Aurora, CO"], ["rank", 7], ["created_at", "2021-10-27 13:30:05.301526"], ["updated_at", "2021-10-27 13:30:05.301526"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 179], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "GSD"], ["name", "Charlie"], ["shelter_id", 179], ["created_at", "2021-10-27 13:30:05.303114"], ["updated_at", "2021-10-27 13:30:05.303114"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/329/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"329"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 329], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/pets/329” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"Itchy", "breed"=>"", "adoptable"=>"0", "age"=>"1", "commit"=>"Save ", "id"=>"329"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 329], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 179], ["LIMIT", 1]] [1m[36mPet Update (0.6ms)[0m [1m[33mUPDATE "pets" SET "name" = $1, "age" = $2, "breed" = $3, "adoptable" = $4, "updated_at" = $5 WHERE "pets"."id" = $6[0m [["name", "Itchy"], ["age", 1], ["breed", ""], ["adoptable", false], ["updated_at", "2021-10-27 13:30:05.312115"], ["id", 329]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets/329 Completed 302 Found in 3ms (ActiveRecord: 1.1ms) Started GET “/pets/329” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"329"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 329], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 179], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Heavenly pets"], ["city", "Aurora, CO"], ["rank", 7], ["created_at", "2021-10-27 13:30:05.318626"], ["updated_at", "2021-10-27 13:30:05.318626"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 180], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "Whippet"], ["name", "Annabelle"], ["shelter_id", 180], ["created_at", "2021-10-27 13:30:05.320182"], ["updated_at", "2021-10-27 13:30:05.320182"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/330/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"330"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 330], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started PATCH “/pets/330” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "breed"=>"", "adoptable"=>"0", "age"=>"", "commit"=>"Save ", "id"=>"330"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 330], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 180], ["LIMIT", 1]] [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets/330/edit Completed 302 Found in 3ms (ActiveRecord: 0.6ms) Started GET “/pets/330/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"330"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 330], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#new as HTML
Rendering shelters/new.html.erb within layouts/application Rendered shelters/new.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#new as HTML
Rendering shelters/new.html.erb within layouts/application Rendered shelters/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"Houston Shelter", "city"=>"Houston", "foster_program"=>"1", "rank"=>"7", "commit"=>"Save "}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Houston Shelter"], ["city", "Houston"], ["rank", 7], ["created_at", "2021-10-27 13:30:05.348962"], ["updated_at", "2021-10-27 13:30:05.348962"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 0.9ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#new as HTML
Rendering shelters/new.html.erb within layouts/application Rendered shelters/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "city"=>"", "foster_program"=>"0", "rank"=>"", "commit"=>"Save "}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters/new Completed 302 Found in 3ms (ActiveRecord: 0.3ms) Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#new as HTML
Rendering shelters/new.html.erb within layouts/application Rendered shelters/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.367861"], ["updated_at", "2021-10-27 13:30:05.367861"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:05.369256"], ["updated_at", "2021-10-27 13:30:05.369256"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:05.370088"], ["updated_at", "2021-10-27 13:30:05.370088"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 182], ["created_at", "2021-10-27 13:30:05.371214"], ["updated_at", "2021-10-27 13:30:05.371214"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 182], ["created_at", "2021-10-27 13:30:05.372260"], ["updated_at", "2021-10-27 13:30:05.372260"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 184], ["created_at", "2021-10-27 13:30:05.373690"], ["updated_at", "2021-10-27 13:30:05.373690"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.381392"], ["updated_at", "2021-10-27 13:30:05.381392"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:05.382630"], ["updated_at", "2021-10-27 13:30:05.382630"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:05.383751"], ["updated_at", "2021-10-27 13:30:05.383751"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 185], ["created_at", "2021-10-27 13:30:05.387549"], ["updated_at", "2021-10-27 13:30:05.387549"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 185], ["created_at", "2021-10-27 13:30:05.389283"], ["updated_at", "2021-10-27 13:30:05.389283"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 187], ["created_at", "2021-10-27 13:30:05.390680"], ["updated_at", "2021-10-27 13:30:05.390680"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.398545"], ["updated_at", "2021-10-27 13:30:05.398545"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:05.399696"], ["updated_at", "2021-10-27 13:30:05.399696"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:05.400799"], ["updated_at", "2021-10-27 13:30:05.400799"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 188], ["created_at", "2021-10-27 13:30:05.402355"], ["updated_at", "2021-10-27 13:30:05.402355"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 188], ["created_at", "2021-10-27 13:30:05.403439"], ["updated_at", "2021-10-27 13:30:05.403439"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 190], ["created_at", "2021-10-27 13:30:05.404770"], ["updated_at", "2021-10-27 13:30:05.404770"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started GET “/shelters?sort=pet_count” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML
Parameters: {"sort"=>"pet_count"}
Rendering shelters/index.html.erb within layouts/application
[1m[36mShelter Load (1.5ms)[0m [1m[34mSELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC[0m
Rendered shelters/index.html.erb within layouts/application (2.2ms)
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.415815"], ["updated_at", "2021-10-27 13:30:05.415815"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:05.416952"], ["updated_at", "2021-10-27 13:30:05.416952"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:05.417914"], ["updated_at", "2021-10-27 13:30:05.417914"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 191], ["created_at", "2021-10-27 13:30:05.419160"], ["updated_at", "2021-10-27 13:30:05.419160"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 191], ["created_at", "2021-10-27 13:30:05.420258"], ["updated_at", "2021-10-27 13:30:05.420258"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 193], ["created_at", "2021-10-27 13:30:05.421548"], ["updated_at", "2021-10-27 13:30:05.421548"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started GET “/shelters/191/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#edit as HTML
Parameters: {"id"=>"191"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 191], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.9ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.433179"], ["updated_at", "2021-10-27 13:30:05.433179"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:05.434274"], ["updated_at", "2021-10-27 13:30:05.434274"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:05.435227"], ["updated_at", "2021-10-27 13:30:05.435227"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 194], ["created_at", "2021-10-27 13:30:05.436383"], ["updated_at", "2021-10-27 13:30:05.436383"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 194], ["created_at", "2021-10-27 13:30:05.437419"], ["updated_at", "2021-10-27 13:30:05.437419"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 196], ["created_at", "2021-10-27 13:30:05.438480"], ["updated_at", "2021-10-27 13:30:05.438480"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms) Started DELETE “/shelters/194” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#destroy as HTML
Parameters: {"id"=>"194"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 194], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 194]]
[1m[36mPet Destroy (0.8ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 343]]
[1m[36mPet Destroy (0.5ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 344]]
[1m[36mShelter Destroy (0.4ms)[0m [1m[31mDELETE FROM "shelters" WHERE "shelters"."id" = $1[0m [["id", 194]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters Completed 302 Found in 4ms (ActiveRecord: 2.4ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.455572"], ["updated_at", "2021-10-27 13:30:05.455572"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:05.456743"], ["updated_at", "2021-10-27 13:30:05.456743"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:05.457658"], ["updated_at", "2021-10-27 13:30:05.457658"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 197], ["created_at", "2021-10-27 13:30:05.458781"], ["updated_at", "2021-10-27 13:30:05.458781"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 197], ["created_at", "2021-10-27 13:30:05.459958"], ["updated_at", "2021-10-27 13:30:05.459958"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 199], ["created_at", "2021-10-27 13:30:05.461209"], ["updated_at", "2021-10-27 13:30:05.461209"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.466908"], ["updated_at", "2021-10-27 13:30:05.466908"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:05.468342"], ["updated_at", "2021-10-27 13:30:05.468342"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:05.469297"], ["updated_at", "2021-10-27 13:30:05.469297"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 200], ["created_at", "2021-10-27 13:30:05.470411"], ["updated_at", "2021-10-27 13:30:05.470411"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 200], ["created_at", "2021-10-27 13:30:05.471702"], ["updated_at", "2021-10-27 13:30:05.471702"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 202], ["created_at", "2021-10-27 13:30:05.473062"], ["updated_at", "2021-10-27 13:30:05.473062"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started GET “/shelters?utf8=%E2%9C%93&search=RGV&commit=Search” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"RGV", "commit"=>"Search"}
Rendering shelters/index.html.erb within layouts/application
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%RGV%')[0m
Rendered shelters/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.485246"], ["updated_at", "2021-10-27 13:30:05.485246"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.486407"], ["updated_at", "2021-10-27 13:30:05.486407"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 203], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 203], ["created_at", "2021-10-27 13:30:05.487744"], ["updated_at", "2021-10-27 13:30:05.487744"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 203], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 203], ["created_at", "2021-10-27 13:30:05.489014"], ["updated_at", "2021-10-27 13:30:05.489014"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 204], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 204], ["created_at", "2021-10-27 13:30:05.490250"], ["updated_at", "2021-10-27 13:30:05.490250"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 203], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 203], ["created_at", "2021-10-27 13:30:05.491822"], ["updated_at", "2021-10-27 13:30:05.491822"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/203/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"203"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 203], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 203], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.508662"], ["updated_at", "2021-10-27 13:30:05.508662"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.510082"], ["updated_at", "2021-10-27 13:30:05.510082"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 205], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 205], ["created_at", "2021-10-27 13:30:05.511752"], ["updated_at", "2021-10-27 13:30:05.511752"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 205], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 205], ["created_at", "2021-10-27 13:30:05.513404"], ["updated_at", "2021-10-27 13:30:05.513404"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 206], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 206], ["created_at", "2021-10-27 13:30:05.514987"], ["updated_at", "2021-10-27 13:30:05.514987"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 205], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 205], ["created_at", "2021-10-27 13:30:05.516755"], ["updated_at", "2021-10-27 13:30:05.516755"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/205/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"205"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 205], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 205], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms) Started GET “/shelters/205/pets/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"205"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 205], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.527281"], ["updated_at", "2021-10-27 13:30:05.527281"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.528554"], ["updated_at", "2021-10-27 13:30:05.528554"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 207], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 207], ["created_at", "2021-10-27 13:30:05.530149"], ["updated_at", "2021-10-27 13:30:05.530149"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 207], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 207], ["created_at", "2021-10-27 13:30:05.531790"], ["updated_at", "2021-10-27 13:30:05.531790"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 208], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 208], ["created_at", "2021-10-27 13:30:05.533455"], ["updated_at", "2021-10-27 13:30:05.533455"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 207], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 207], ["created_at", "2021-10-27 13:30:05.535085"], ["updated_at", "2021-10-27 13:30:05.535085"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/207/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"207"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 207], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 207], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms) Started GET “/pets/360/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"360"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 360], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.544708"], ["updated_at", "2021-10-27 13:30:05.544708"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.545938"], ["updated_at", "2021-10-27 13:30:05.545938"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 209], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 209], ["created_at", "2021-10-27 13:30:05.547987"], ["updated_at", "2021-10-27 13:30:05.547987"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 209], ["LIMIT", 1]]
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 209], ["created_at", "2021-10-27 13:30:05.549313"], ["updated_at", "2021-10-27 13:30:05.549313"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 210], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 210], ["created_at", "2021-10-27 13:30:05.552333"], ["updated_at", "2021-10-27 13:30:05.552333"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 209], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 209], ["created_at", "2021-10-27 13:30:05.553969"], ["updated_at", "2021-10-27 13:30:05.553969"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/209/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"209"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 209], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 209], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms) Started DELETE “/pets/364” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"364"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 364], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (1.0ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 364]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 2ms (ActiveRecord: 1.3ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 209], ["LIMIT", 1]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 210], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 209], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (2.1ms)
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.569008"], ["updated_at", "2021-10-27 13:30:05.569008"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.570276"], ["updated_at", "2021-10-27 13:30:05.570276"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 211], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 211], ["created_at", "2021-10-27 13:30:05.571789"], ["updated_at", "2021-10-27 13:30:05.571789"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 211], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 211], ["created_at", "2021-10-27 13:30:05.573600"], ["updated_at", "2021-10-27 13:30:05.573600"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 212], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 212], ["created_at", "2021-10-27 13:30:05.575172"], ["updated_at", "2021-10-27 13:30:05.575172"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 211], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 211], ["created_at", "2021-10-27 13:30:05.576954"], ["updated_at", "2021-10-27 13:30:05.576954"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/211/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"211"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 211], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 211], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.7ms)
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.7ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.584952"], ["updated_at", "2021-10-27 13:30:05.584952"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.585985"], ["updated_at", "2021-10-27 13:30:05.585985"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 213], ["LIMIT", 1]]
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 213], ["created_at", "2021-10-27 13:30:05.587646"], ["updated_at", "2021-10-27 13:30:05.587646"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 213], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 213], ["created_at", "2021-10-27 13:30:05.589660"], ["updated_at", "2021-10-27 13:30:05.589660"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 214], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 214], ["created_at", "2021-10-27 13:30:05.591292"], ["updated_at", "2021-10-27 13:30:05.591292"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 213], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 213], ["created_at", "2021-10-27 13:30:05.592875"], ["updated_at", "2021-10-27 13:30:05.592875"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/213/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"213"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 213], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 213], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.5ms)
Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.7ms) Started GET “/shelters/213/pets?utf8=%E2%9C%93&age=3&commit=Filter” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#pets as HTML
Parameters: {"utf8"=>"✓", "age"=>"3", "commit"=>"Filter", "shelter_id"=>"213"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 213], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= '3')[0m [["shelter_id", 213], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.5ms)
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.9ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.607424"], ["updated_at", "2021-10-27 13:30:05.607424"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.608709"], ["updated_at", "2021-10-27 13:30:05.608709"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 215], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 215], ["created_at", "2021-10-27 13:30:05.610291"], ["updated_at", "2021-10-27 13:30:05.610291"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 215], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 215], ["created_at", "2021-10-27 13:30:05.611910"], ["updated_at", "2021-10-27 13:30:05.611910"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 216], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 216], ["created_at", "2021-10-27 13:30:05.613625"], ["updated_at", "2021-10-27 13:30:05.613625"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 215], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 215], ["created_at", "2021-10-27 13:30:05.615246"], ["updated_at", "2021-10-27 13:30:05.615246"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/215/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"215"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 215], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 215], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms) Started GET “/shelters/215/pets?sort=alphabetical” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#pets as HTML
Parameters: {"sort"=>"alphabetical", "shelter_id"=>"215"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 215], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC[0m [["shelter_id", 215], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.9ms)
Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.7ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.628195"], ["updated_at", "2021-10-27 13:30:05.628195"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/217” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#show as HTML
Parameters: {"id"=>"217"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 217], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 217]]
Rendered shelters/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.5ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.635341"], ["updated_at", "2021-10-27 13:30:05.635341"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "shorthair"], ["name", "garfield"], ["shelter_id", 218], ["created_at", "2021-10-27 13:30:05.636574"], ["updated_at", "2021-10-27 13:30:05.636574"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/218” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#show as HTML
Parameters: {"id"=>"218"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 218], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 218]]
Rendered shelters/show.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms)
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 218]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.642694"], ["updated_at", "2021-10-27 13:30:05.642694"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/219” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#show as HTML
Parameters: {"id"=>"219"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 219], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 219]]
Rendered shelters/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.6ms) Started DELETE “/shelters/219” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#destroy as HTML
Parameters: {"id"=>"219"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 219], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 219]]
[1m[36mShelter Destroy (0.7ms)[0m [1m[31mDELETE FROM "shelters" WHERE "shelters"."id" = $1[0m [["id", 219]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 1.2ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.654232"], ["updated_at", "2021-10-27 13:30:05.654232"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/220” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#show as HTML
Parameters: {"id"=>"220"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 220], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 220]]
Rendered shelters/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.5ms) Started GET “/shelters/220/pets” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"220"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 220], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 220], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.662214"], ["updated_at", "2021-10-27 13:30:05.662214"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/221/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#edit as HTML
Parameters: {"id"=>"221"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 221], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.667670"], ["updated_at", "2021-10-27 13:30:05.667670"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/222/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#edit as HTML
Parameters: {"id"=>"222"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 222], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/shelters/222” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"Wichita Shelter", "city"=>"Wichita", "foster_program"=>"0", "rank"=>"10", "commit"=>"Save ", "id"=>"222"}
Unpermitted parameters: :utf8, :_method, :commit
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 222], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mShelter Update (0.4ms)[0m [1m[33mUPDATE "shelters" SET "name" = $1, "city" = $2, "rank" = $3, "updated_at" = $4 WHERE "shelters"."id" = $5[0m [["name", "Wichita Shelter"], ["city", "Wichita"], ["rank", 10], ["updated_at", "2021-10-27 13:30:05.677082"], ["id", 222]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 0.7ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (0.8ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:05.683323"], ["updated_at", "2021-10-27 13:30:05.683323"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/223/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#edit as HTML
Parameters: {"id"=>"223"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 223], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms) Started PATCH “/shelters/223” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "city"=>"Wichita", "foster_program"=>"0", "rank"=>"", "commit"=>"Save ", "id"=>"223"}
Unpermitted parameters: :utf8, :_method, :commit
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 223], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters/223/edit Completed 302 Found in 3ms (ActiveRecord: 0.4ms) Started GET “/shelters/223/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by SheltersController#edit as HTML
Parameters: {"id"=>"223"}
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 223], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.9ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:05.711697"], ["updated_at", "2021-10-27 13:30:05.711697"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/79/veterinarians/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"79"}
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 79], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.9ms)
Completed 200 OK in 5ms (Views: 1.5ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:05.723334"], ["updated_at", "2021-10-27 13:30:05.723334"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/80/veterinarians/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"80"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 80], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started POST “/veterinary_offices/80/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"Dr. Burstyn", "review_rating"=>"10", "on_call"=>"1", "commit"=>"Save ", "veterinary_office_id"=>"80"}
Unpermitted parameters: :utf8, :commit
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 80], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.5ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 80], ["LIMIT", 1]]
[1m[36mVeterinarian Create (1.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Dr. Burstyn"], ["veterinary_office_id", 80], ["created_at", "2021-10-27 13:30:05.746983"], ["updated_at", "2021-10-27 13:30:05.746983"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices/80/veterinarians Completed 302 Found in 18ms (ActiveRecord: 11.7ms) Started GET “/veterinary_offices/80/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"80"}
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 80], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 80], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.7ms)
Completed 200 OK in 4ms (Views: 2.0ms | ActiveRecord: 0.6ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:05.757824"], ["updated_at", "2021-10-27 13:30:05.757824"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/81/veterinarians/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"81"}
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 81], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms) Started POST “/veterinary_offices/81/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "review_rating"=>"", "on_call"=>"0", "commit"=>"Save ", "veterinary_office_id"=>"81"}
Unpermitted parameters: :utf8, :commit
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 81], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 81], ["LIMIT", 1]] [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices/81/veterinarians/new Completed 302 Found in 3ms (ActiveRecord: 0.6ms) Started GET “/veterinary_offices/81/veterinarians/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"81"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 81], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:05.773972"], ["updated_at", "2021-10-27 13:30:05.773972"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 82], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 82], ["created_at", "2021-10-27 13:30:05.775742"], ["updated_at", "2021-10-27 13:30:05.775742"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 82], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 82], ["created_at", "2021-10-27 13:30:05.777540"], ["updated_at", "2021-10-27 13:30:05.777540"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 82], ["LIMIT", 1]] [1m[36mCACHE VeterinaryOffice Load (0.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 82], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:05.786064"], ["updated_at", "2021-10-27 13:30:05.786064"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 83], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 83], ["created_at", "2021-10-27 13:30:05.787895"], ["updated_at", "2021-10-27 13:30:05.787895"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 83], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 83], ["created_at", "2021-10-27 13:30:05.789798"], ["updated_at", "2021-10-27 13:30:05.789798"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 83], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:05.795223"], ["updated_at", "2021-10-27 13:30:05.795223"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 84], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 84], ["created_at", "2021-10-27 13:30:05.796847"], ["updated_at", "2021-10-27 13:30:05.796847"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 84], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 84], ["created_at", "2021-10-27 13:30:05.798546"], ["updated_at", "2021-10-27 13:30:05.798546"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 84], ["LIMIT", 1]] [1m[36mCACHE VeterinaryOffice Load (0.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 84], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started GET “/veterinarians/142/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"142"}
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 142], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.9ms)
Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:05.809002"], ["updated_at", "2021-10-27 13:30:05.809002"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 85], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 85], ["created_at", "2021-10-27 13:30:05.810730"], ["updated_at", "2021-10-27 13:30:05.810730"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 85], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 85], ["created_at", "2021-10-27 13:30:05.812269"], ["updated_at", "2021-10-27 13:30:05.812269"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 85], ["LIMIT", 1]] [1m[36mCACHE VeterinaryOffice Load (0.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 85], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms) Started DELETE “/veterinarians/144” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#destroy as HTML
Parameters: {"id"=>"144"}
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 144], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Destroy (0.4ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 144]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians Completed 302 Found in 2ms (ActiveRecord: 0.9ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 85], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:05.824517"], ["updated_at", "2021-10-27 13:30:05.824517"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 86], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 86], ["created_at", "2021-10-27 13:30:05.826014"], ["updated_at", "2021-10-27 13:30:05.826014"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/146” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#show as HTML
Parameters: {"id"=>"146"}
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 146], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 86], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.6ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:05.833326"], ["updated_at", "2021-10-27 13:30:05.833326"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 87], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 87], ["created_at", "2021-10-27 13:30:05.834972"], ["updated_at", "2021-10-27 13:30:05.834972"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/147” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#show as HTML
Parameters: {"id"=>"147"}
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 147], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 87], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.5ms) Started DELETE “/veterinarians/147” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#destroy as HTML
Parameters: {"id"=>"147"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 147], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Destroy (0.3ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 147]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.7ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.1ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] Rendered veterinarians/index.html.erb within layouts/application (0.3ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 13:30:05.845939"], ["updated_at", "2021-10-27 13:30:05.845939"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 88], ["created_at", "2021-10-27 13:30:05.847430"], ["updated_at", "2021-10-27 13:30:05.847430"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/148/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"148"}
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 148], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 13:30:05.853333"], ["updated_at", "2021-10-27 13:30:05.853333"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 89], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 89], ["created_at", "2021-10-27 13:30:05.854933"], ["updated_at", "2021-10-27 13:30:05.854933"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/149/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"149"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 149], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started PATCH “/veterinarians/149” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"Ignacio", "on_call"=>"0", "review_rating"=>"10", "commit"=>"Save ", "id"=>"149"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 149], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 89], ["LIMIT", 1]] [1m[36mVeterinarian Update (0.5ms)[0m [1m[33mUPDATE "veterinarians" SET "name" = $1, "on_call" = $2, "review_rating" = $3, "updated_at" = $4 WHERE "veterinarians"."id" = $5[0m [["name", "Ignacio"], ["on_call", false], ["review_rating", 10], ["updated_at", "2021-10-27 13:30:05.864464"], ["id", 149]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians/149 Completed 302 Found in 3ms (ActiveRecord: 1.0ms) Started GET “/veterinarians/149” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#show as HTML
Parameters: {"id"=>"149"}
[1m[36mVeterinarian Load (0.1ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 149], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 89], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 13:30:05.870543"], ["updated_at", "2021-10-27 13:30:05.870543"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 90], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 90], ["created_at", "2021-10-27 13:30:05.872525"], ["updated_at", "2021-10-27 13:30:05.872525"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/150/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"150"}
[1m[36mVeterinarian Load (0.1ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 150], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms) Started PATCH “/veterinarians/150” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "on_call"=>"0", "review_rating"=>"", "commit"=>"Save ", "id"=>"150"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 150], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 90], ["LIMIT", 1]] [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians/150/edit Completed 302 Found in 5ms (ActiveRecord: 0.6ms) Started GET “/veterinarians/150/edit” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"150"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 150], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinaryOfficesController#new as HTML
Rendering veterinary_offices/new.html.erb within layouts/application Rendered veterinary_offices/new.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinaryOfficesController#new as HTML
Rendering veterinary_offices/new.html.erb within layouts/application Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinaryOfficesController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"Houston Vet Office", "boarding_services"=>"0", "max_patient_capacity"=>"75", "commit"=>"Save "}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", false], ["max_patient_capacity", 75], ["name", "Houston Vet Office"], ["created_at", "2021-10-27 13:30:05.901722"], ["updated_at", "2021-10-27 13:30:05.901722"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 0.7ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.5ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.5ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinaryOfficesController#new as HTML
Rendering veterinary_offices/new.html.erb within layouts/application Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinaryOfficesController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "boarding_services"=>"0", "max_patient_capacity"=>"", "commit"=>"Save "}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices/new Completed 302 Found in 2ms (ActiveRecord: 0.2ms) Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinaryOfficesController#new as HTML
Rendering veterinary_offices/new.html.erb within layouts/application Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 13:30:05.918387"], ["updated_at", "2021-10-27 13:30:05.918387"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 13:30:05.919655"], ["updated_at", "2021-10-27 13:30:05.919655"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:30:05.920783"], ["updated_at", "2021-10-27 13:30:05.920783"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 92], ["created_at", "2021-10-27 13:30:05.922447"], ["updated_at", "2021-10-27 13:30:05.922447"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 92], ["created_at", "2021-10-27 13:30:05.923551"], ["updated_at", "2021-10-27 13:30:05.923551"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 94], ["created_at", "2021-10-27 13:30:05.924545"], ["updated_at", "2021-10-27 13:30:05.924545"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 13:30:05.931145"], ["updated_at", "2021-10-27 13:30:05.931145"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 13:30:05.932219"], ["updated_at", "2021-10-27 13:30:05.932219"]]
[1m[35m (0.9ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:30:05.934037"], ["updated_at", "2021-10-27 13:30:05.934037"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.8ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 95], ["created_at", "2021-10-27 13:30:05.935428"], ["updated_at", "2021-10-27 13:30:05.935428"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 95], ["created_at", "2021-10-27 13:30:05.936989"], ["updated_at", "2021-10-27 13:30:05.936989"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 97], ["created_at", "2021-10-27 13:30:05.938431"], ["updated_at", "2021-10-27 13:30:05.938431"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.8ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.6ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 13:30:05.945892"], ["updated_at", "2021-10-27 13:30:05.945892"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 13:30:05.947306"], ["updated_at", "2021-10-27 13:30:05.947306"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:30:05.948382"], ["updated_at", "2021-10-27 13:30:05.948382"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 98], ["created_at", "2021-10-27 13:30:05.949903"], ["updated_at", "2021-10-27 13:30:05.949903"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 98], ["created_at", "2021-10-27 13:30:05.951113"], ["updated_at", "2021-10-27 13:30:05.951113"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 100], ["created_at", "2021-10-27 13:30:05.952398"], ["updated_at", "2021-10-27 13:30:05.952398"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (1.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (1.7ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 1.0ms) Started GET “/veterinary_offices?sort=veterinarian_count” for 127.0.0.1 at 2021-10-27 07:30:05 -0600 Processing by VeterinaryOfficesController#index as HTML
Parameters: {"sort"=>"veterinarian_count"}
Rendering veterinary_offices/index.html.erb within layouts/application
[1m[36mVeterinaryOffice Load (1.8ms)[0m [1m[34mSELECT veterinary_offices.*, count(veterinarians.id) AS vets_count FROM "veterinary_offices" LEFT OUTER JOIN veterinarians ON veterinarians.veterinary_office_id = veterinary_offices.id GROUP BY veterinary_offices.id ORDER BY vets_count DESC[0m
Rendered veterinary_offices/index.html.erb within layouts/application (2.4ms)
Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.8ms)
[1m[35m (1.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (15.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 13:30:05.970965"], ["updated_at", "2021-10-27 13:30:05.970965"]]
[1m[35m (3.8ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (64.8ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 13:30:05.991449"], ["updated_at", "2021-10-27 13:30:05.991449"]]
[1m[35m (0.9ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (1.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:30:06.058221"], ["updated_at", "2021-10-27 13:30:06.058221"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 101], ["created_at", "2021-10-27 13:30:06.061315"], ["updated_at", "2021-10-27 13:30:06.061315"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 101], ["created_at", "2021-10-27 13:30:06.063062"], ["updated_at", "2021-10-27 13:30:06.063062"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 103], ["created_at", "2021-10-27 13:30:06.064779"], ["updated_at", "2021-10-27 13:30:06.064779"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/101/edit” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"101"}
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 101], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (1.3ms)
Completed 200 OK in 4ms (Views: 2.1ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 13:30:06.083042"], ["updated_at", "2021-10-27 13:30:06.083042"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 13:30:06.084477"], ["updated_at", "2021-10-27 13:30:06.084477"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:30:06.085711"], ["updated_at", "2021-10-27 13:30:06.085711"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 104], ["created_at", "2021-10-27 13:30:06.087289"], ["updated_at", "2021-10-27 13:30:06.087289"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 104], ["created_at", "2021-10-27 13:30:06.088999"], ["updated_at", "2021-10-27 13:30:06.088999"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 106], ["created_at", "2021-10-27 13:30:06.090620"], ["updated_at", "2021-10-27 13:30:06.090620"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms) Started DELETE “/veterinary_offices/104” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#destroy as HTML
Parameters: {"id"=>"104"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 104], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 104]]
[1m[36mVeterinarian Destroy (0.2ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 163]]
[1m[36mVeterinarian Destroy (0.2ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 164]]
[1m[36mVeterinaryOffice Destroy (0.5ms)[0m [1m[31mDELETE FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1[0m [["id", 104]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices Completed 302 Found in 4ms (ActiveRecord: 1.6ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:30:06.110089"], ["updated_at", "2021-10-27 13:30:06.110089"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/107” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#show as HTML
Parameters: {"id"=>"107"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 107], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 107]]
Rendered veterinary_offices/show.html.erb within layouts/application (1.2ms)
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 13:30:06.117775"], ["updated_at", "2021-10-27 13:30:06.117775"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/108” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#show as HTML
Parameters: {"id"=>"108"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 108], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 108]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 108]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 90], ["name", "Aurora vet"], ["created_at", "2021-10-27 13:30:06.125147"], ["updated_at", "2021-10-27 13:30:06.125147"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/109” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#show as HTML
Parameters: {"id"=>"109"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 109], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 109]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.5ms) Started DELETE “/veterinary_offices/109” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#destroy as HTML
Parameters: {"id"=>"109"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 109], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 109]]
[1m[36mVeterinaryOffice Destroy (0.7ms)[0m [1m[31mDELETE FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1[0m [["id", 109]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 1.4ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 90], ["name", "Aurora vet"], ["created_at", "2021-10-27 13:30:06.139411"], ["updated_at", "2021-10-27 13:30:06.139411"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/110” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#show as HTML
Parameters: {"id"=>"110"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 110], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 110]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/110/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"110"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 110], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 110], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 13:30:06.149118"], ["updated_at", "2021-10-27 13:30:06.149118"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/111/edit” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"111"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 111], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.1ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 13:30:06.158024"], ["updated_at", "2021-10-27 13:30:06.158024"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/112/edit” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"112"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 112], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started PATCH “/veterinary_offices/112” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"Wichita vet office", "boarding_services"=>"0", "max_patient_capacity"=>"10", "commit"=>"Save ", "id"=>"112"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 112], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit, :id
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mVeterinaryOffice Update (0.5ms)[0m [1m[33mUPDATE "veterinary_offices" SET "name" = $1, "max_patient_capacity" = $2, "updated_at" = $3 WHERE "veterinary_offices"."id" = $4[0m [["name", "Wichita vet office"], ["max_patient_capacity", 10], ["updated_at", "2021-10-27 13:30:06.167924"], ["id", 112]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 1.0ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 13:30:06.174853"], ["updated_at", "2021-10-27 13:30:06.174853"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/113/edit” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"113"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 113], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started PATCH “/veterinary_offices/113” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "boarding_services"=>"0", "max_patient_capacity"=>"", "commit"=>"Save ", "id"=>"113"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 113], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit, :id
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices/113/edit Completed 302 Found in 2ms (ActiveRecord: 0.4ms) Started GET “/veterinary_offices/113/edit” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"113"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 113], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.189609"], ["updated_at", "2021-10-27 13:30:06.189609"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.190576"], ["updated_at", "2021-10-27 13:30:06.190576"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 114], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 114], ["created_at", "2021-10-27 13:30:06.191956"], ["updated_at", "2021-10-27 13:30:06.191956"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 114], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 114], ["created_at", "2021-10-27 13:30:06.193558"], ["updated_at", "2021-10-27 13:30:06.193558"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 114], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 114], ["created_at", "2021-10-27 13:30:06.195097"], ["updated_at", "2021-10-27 13:30:06.195097"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 115], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 115], ["created_at", "2021-10-27 13:30:06.196696"], ["updated_at", "2021-10-27 13:30:06.196696"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 115], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 115], ["created_at", "2021-10-27 13:30:06.198189"], ["updated_at", "2021-10-27 13:30:06.198189"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/114/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"114"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 114], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 114], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.6ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.206554"], ["updated_at", "2021-10-27 13:30:06.206554"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.207779"], ["updated_at", "2021-10-27 13:30:06.207779"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 116], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 116], ["created_at", "2021-10-27 13:30:06.209460"], ["updated_at", "2021-10-27 13:30:06.209460"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 116], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 116], ["created_at", "2021-10-27 13:30:06.211115"], ["updated_at", "2021-10-27 13:30:06.211115"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 116], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 116], ["created_at", "2021-10-27 13:30:06.212651"], ["updated_at", "2021-10-27 13:30:06.212651"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 117], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 117], ["created_at", "2021-10-27 13:30:06.214422"], ["updated_at", "2021-10-27 13:30:06.214422"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 117], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 117], ["created_at", "2021-10-27 13:30:06.216126"], ["updated_at", "2021-10-27 13:30:06.216126"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/116/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"116"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 116], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 116], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms) Started GET “/veterinarians/172/edit” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"172"}
[1m[36mVeterinarian Load (0.1ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 172], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.226067"], ["updated_at", "2021-10-27 13:30:06.226067"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.227146"], ["updated_at", "2021-10-27 13:30:06.227146"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 118], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 118], ["created_at", "2021-10-27 13:30:06.228747"], ["updated_at", "2021-10-27 13:30:06.228747"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 118], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 118], ["created_at", "2021-10-27 13:30:06.230501"], ["updated_at", "2021-10-27 13:30:06.230501"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 118], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 118], ["created_at", "2021-10-27 13:30:06.232074"], ["updated_at", "2021-10-27 13:30:06.232074"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 119], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 119], ["created_at", "2021-10-27 13:30:06.233661"], ["updated_at", "2021-10-27 13:30:06.233661"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 119], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 119], ["created_at", "2021-10-27 13:30:06.235195"], ["updated_at", "2021-10-27 13:30:06.235195"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/118/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"118"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 118], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 118], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms) Started DELETE “/veterinarians/177” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinariansController#destroy as HTML
Parameters: {"id"=>"177"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 177], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Destroy (0.4ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 177]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.8ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 118], ["LIMIT", 1]] [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 119], ["LIMIT", 1]] [1m[36mCACHE VeterinaryOffice Load (0.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 119], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.6ms)
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.248349"], ["updated_at", "2021-10-27 13:30:06.248349"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.249565"], ["updated_at", "2021-10-27 13:30:06.249565"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 120], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 120], ["created_at", "2021-10-27 13:30:06.251032"], ["updated_at", "2021-10-27 13:30:06.251032"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 120], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 120], ["created_at", "2021-10-27 13:30:06.252615"], ["updated_at", "2021-10-27 13:30:06.252615"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 120], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 120], ["created_at", "2021-10-27 13:30:06.254229"], ["updated_at", "2021-10-27 13:30:06.254229"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 121], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 121], ["created_at", "2021-10-27 13:30:06.255732"], ["updated_at", "2021-10-27 13:30:06.255732"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 121], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 121], ["created_at", "2021-10-27 13:30:06.257218"], ["updated_at", "2021-10-27 13:30:06.257218"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/120/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"120"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 120], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 120], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms) Started GET “/veterinary_offices/120/veterinarians/new” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"120"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 120], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.1ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.268006"], ["updated_at", "2021-10-27 13:30:06.268006"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.269031"], ["updated_at", "2021-10-27 13:30:06.269031"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 122], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 122], ["created_at", "2021-10-27 13:30:06.270293"], ["updated_at", "2021-10-27 13:30:06.270293"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 122], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 122], ["created_at", "2021-10-27 13:30:06.271874"], ["updated_at", "2021-10-27 13:30:06.271874"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 122], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 122], ["created_at", "2021-10-27 13:30:06.273378"], ["updated_at", "2021-10-27 13:30:06.273378"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 123], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 123], ["created_at", "2021-10-27 13:30:06.274873"], ["updated_at", "2021-10-27 13:30:06.274873"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 123], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 123], ["created_at", "2021-10-27 13:30:06.276361"], ["updated_at", "2021-10-27 13:30:06.276361"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/122/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"122"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 122], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 122], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.283361"], ["updated_at", "2021-10-27 13:30:06.283361"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.284333"], ["updated_at", "2021-10-27 13:30:06.284333"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 124], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 124], ["created_at", "2021-10-27 13:30:06.285577"], ["updated_at", "2021-10-27 13:30:06.285577"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 124], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 124], ["created_at", "2021-10-27 13:30:06.286871"], ["updated_at", "2021-10-27 13:30:06.286871"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 124], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 124], ["created_at", "2021-10-27 13:30:06.288348"], ["updated_at", "2021-10-27 13:30:06.288348"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 125], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 125], ["created_at", "2021-10-27 13:30:06.289823"], ["updated_at", "2021-10-27 13:30:06.289823"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 125], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 125], ["created_at", "2021-10-27 13:30:06.291373"], ["updated_at", "2021-10-27 13:30:06.291373"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/124/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"124"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 124], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 124], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms) Started GET “/veterinary_offices/124/veterinarians?utf8=%E2%9C%93&review_rating=5&commit=Filter” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"utf8"=>"✓", "review_rating"=>"5", "commit"=>"Filter", "veterinary_office_id"=>"124"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 124], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 AND (review_rating >= '5')[0m [["veterinary_office_id", 124], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.6ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.305977"], ["updated_at", "2021-10-27 13:30:06.305977"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.307350"], ["updated_at", "2021-10-27 13:30:06.307350"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 126], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 126], ["created_at", "2021-10-27 13:30:06.308889"], ["updated_at", "2021-10-27 13:30:06.308889"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 126], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 126], ["created_at", "2021-10-27 13:30:06.310658"], ["updated_at", "2021-10-27 13:30:06.310658"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 126], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 126], ["created_at", "2021-10-27 13:30:06.312178"], ["updated_at", "2021-10-27 13:30:06.312178"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 127], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 127], ["created_at", "2021-10-27 13:30:06.313929"], ["updated_at", "2021-10-27 13:30:06.313929"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 127], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 127], ["created_at", "2021-10-27 13:30:06.315182"], ["updated_at", "2021-10-27 13:30:06.315182"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/127/veterinarians” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"127"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 127], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.1ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 127], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms) Started GET “/veterinary_offices/127/veterinarians?sort=alphabetical” for 127.0.0.1 at 2021-10-27 07:30:06 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"sort"=>"alphabetical", "veterinary_office_id"=>"127"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 127], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.5ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 ORDER BY "veterinarians"."name" ASC[0m [["veterinary_office_id", 127], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.5ms)
Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.7ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:30:06.334087"], ["updated_at", "2021-10-27 13:30:06.334087"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 224], ["created_at", "2021-10-27 13:30:06.335706"], ["updated_at", "2021-10-27 13:30:06.335706"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 224], ["created_at", "2021-10-27 13:30:06.337089"], ["updated_at", "2021-10-27 13:30:06.337089"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 224], ["created_at", "2021-10-27 13:30:06.338470"], ["updated_at", "2021-10-27 13:30:06.338470"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:30:06.339640"], ["updated_at", "2021-10-27 13:30:06.339640"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.8ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 381], ["application_id", 73], ["created_at", "2021-10-27 13:30:06.341336"], ["updated_at", "2021-10-27 13:30:06.341336"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.7ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 382], ["application_id", 73], ["created_at", "2021-10-27 13:30:06.343059"], ["updated_at", "2021-10-27 13:30:06.343059"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 73)[0m
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 73)[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:30:06.348894"], ["updated_at", "2021-10-27 13:30:06.348894"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 225], ["created_at", "2021-10-27 13:30:06.350248"], ["updated_at", "2021-10-27 13:30:06.350248"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 225], ["created_at", "2021-10-27 13:30:06.351636"], ["updated_at", "2021-10-27 13:30:06.351636"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 225], ["created_at", "2021-10-27 13:30:06.352974"], ["updated_at", "2021-10-27 13:30:06.352974"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:30:06.354191"], ["updated_at", "2021-10-27 13:30:06.354191"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 384], ["application_id", 74], ["created_at", "2021-10-27 13:30:06.355936"], ["updated_at", "2021-10-27 13:30:06.355936"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 385], ["application_id", 74], ["created_at", "2021-10-27 13:30:06.357412"], ["updated_at", "2021-10-27 13:30:06.357412"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 74], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 13:30:06.359817"], ["updated_at", "2021-10-27 13:30:06.359817"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 226], ["created_at", "2021-10-27 13:30:06.361562"], ["updated_at", "2021-10-27 13:30:06.361562"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 226], ["created_at", "2021-10-27 13:30:06.362863"], ["updated_at", "2021-10-27 13:30:06.362863"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 226], ["created_at", "2021-10-27 13:30:06.363989"], ["updated_at", "2021-10-27 13:30:06.363989"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 13:30:06.364907"], ["updated_at", "2021-10-27 13:30:06.364907"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 387], ["application_id", 75], ["created_at", "2021-10-27 13:30:06.366484"], ["updated_at", "2021-10-27 13:30:06.366484"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 388], ["application_id", 75], ["created_at", "2021-10-27 13:30:06.367954"], ["updated_at", "2021-10-27 13:30:06.367954"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 75], ["LIMIT", 1]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.370673"], ["updated_at", "2021-10-27 13:30:06.370673"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 227], ["created_at", "2021-10-27 13:30:06.372095"], ["updated_at", "2021-10-27 13:30:06.372095"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 227], ["created_at", "2021-10-27 13:30:06.373507"], ["updated_at", "2021-10-27 13:30:06.373507"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 227], ["created_at", "2021-10-27 13:30:06.374870"], ["updated_at", "2021-10-27 13:30:06.374870"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.378809"], ["updated_at", "2021-10-27 13:30:06.378809"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 228], ["created_at", "2021-10-27 13:30:06.380147"], ["updated_at", "2021-10-27 13:30:06.380147"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 228], ["created_at", "2021-10-27 13:30:06.381309"], ["updated_at", "2021-10-27 13:30:06.381309"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 228], ["created_at", "2021-10-27 13:30:06.382692"], ["updated_at", "2021-10-27 13:30:06.382692"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.384632"], ["updated_at", "2021-10-27 13:30:06.384632"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 229], ["created_at", "2021-10-27 13:30:06.385998"], ["updated_at", "2021-10-27 13:30:06.385998"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 229], ["created_at", "2021-10-27 13:30:06.387499"], ["updated_at", "2021-10-27 13:30:06.387499"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 229], ["created_at", "2021-10-27 13:30:06.389025"], ["updated_at", "2021-10-27 13:30:06.389025"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.391515"], ["updated_at", "2021-10-27 13:30:06.391515"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 230], ["created_at", "2021-10-27 13:30:06.392938"], ["updated_at", "2021-10-27 13:30:06.392938"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 230], ["created_at", "2021-10-27 13:30:06.394182"], ["updated_at", "2021-10-27 13:30:06.394182"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 230], ["created_at", "2021-10-27 13:30:06.395288"], ["updated_at", "2021-10-27 13:30:06.395288"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.401074"], ["updated_at", "2021-10-27 13:30:06.401074"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 231], ["created_at", "2021-10-27 13:30:06.402741"], ["updated_at", "2021-10-27 13:30:06.402741"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 231], ["created_at", "2021-10-27 13:30:06.404292"], ["updated_at", "2021-10-27 13:30:06.404292"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 231], ["created_at", "2021-10-27 13:30:06.405679"], ["updated_at", "2021-10-27 13:30:06.405679"]]
[1m[35m (0.9ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.410691"], ["updated_at", "2021-10-27 13:30:06.410691"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 232], ["created_at", "2021-10-27 13:30:06.412011"], ["updated_at", "2021-10-27 13:30:06.412011"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 232], ["created_at", "2021-10-27 13:30:06.413399"], ["updated_at", "2021-10-27 13:30:06.413399"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 232], ["created_at", "2021-10-27 13:30:06.414669"], ["updated_at", "2021-10-27 13:30:06.414669"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.417594"], ["updated_at", "2021-10-27 13:30:06.417594"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 233], ["created_at", "2021-10-27 13:30:06.418824"], ["updated_at", "2021-10-27 13:30:06.418824"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 233], ["created_at", "2021-10-27 13:30:06.420277"], ["updated_at", "2021-10-27 13:30:06.420277"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 233], ["created_at", "2021-10-27 13:30:06.421661"], ["updated_at", "2021-10-27 13:30:06.421661"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Claw%')[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.424341"], ["updated_at", "2021-10-27 13:30:06.424341"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 234], ["created_at", "2021-10-27 13:30:06.425640"], ["updated_at", "2021-10-27 13:30:06.425640"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 234], ["created_at", "2021-10-27 13:30:06.426869"], ["updated_at", "2021-10-27 13:30:06.426869"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 234], ["created_at", "2021-10-27 13:30:06.428066"], ["updated_at", "2021-10-27 13:30:06.428066"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.430501"], ["updated_at", "2021-10-27 13:30:06.430501"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 235], ["created_at", "2021-10-27 13:30:06.431741"], ["updated_at", "2021-10-27 13:30:06.431741"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 235], ["created_at", "2021-10-27 13:30:06.433002"], ["updated_at", "2021-10-27 13:30:06.433002"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 235], ["created_at", "2021-10-27 13:30:06.434342"], ["updated_at", "2021-10-27 13:30:06.434342"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.436310"], ["updated_at", "2021-10-27 13:30:06.436310"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:06.437550"], ["updated_at", "2021-10-27 13:30:06.437550"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:06.438459"], ["updated_at", "2021-10-27 13:30:06.438459"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 236], ["created_at", "2021-10-27 13:30:06.439566"], ["updated_at", "2021-10-27 13:30:06.439566"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 236], ["created_at", "2021-10-27 13:30:06.440775"], ["updated_at", "2021-10-27 13:30:06.440775"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 238], ["created_at", "2021-10-27 13:30:06.442292"], ["updated_at", "2021-10-27 13:30:06.442292"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 236], ["created_at", "2021-10-27 13:30:06.443801"], ["updated_at", "2021-10-27 13:30:06.443801"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.446048"], ["updated_at", "2021-10-27 13:30:06.446048"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:06.447223"], ["updated_at", "2021-10-27 13:30:06.447223"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:06.448338"], ["updated_at", "2021-10-27 13:30:06.448338"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 239], ["created_at", "2021-10-27 13:30:06.449717"], ["updated_at", "2021-10-27 13:30:06.449717"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 239], ["created_at", "2021-10-27 13:30:06.451139"], ["updated_at", "2021-10-27 13:30:06.451139"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 241], ["created_at", "2021-10-27 13:30:06.452602"], ["updated_at", "2021-10-27 13:30:06.452602"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 239], ["created_at", "2021-10-27 13:30:06.454077"], ["updated_at", "2021-10-27 13:30:06.454077"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.459919"], ["updated_at", "2021-10-27 13:30:06.459919"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:06.461068"], ["updated_at", "2021-10-27 13:30:06.461068"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:06.462150"], ["updated_at", "2021-10-27 13:30:06.462150"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 242], ["created_at", "2021-10-27 13:30:06.463539"], ["updated_at", "2021-10-27 13:30:06.463539"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 242], ["created_at", "2021-10-27 13:30:06.465038"], ["updated_at", "2021-10-27 13:30:06.465038"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 244], ["created_at", "2021-10-27 13:30:06.466576"], ["updated_at", "2021-10-27 13:30:06.466576"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 242], ["created_at", "2021-10-27 13:30:06.467982"], ["updated_at", "2021-10-27 13:30:06.467982"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.474187"], ["updated_at", "2021-10-27 13:30:06.474187"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:06.475203"], ["updated_at", "2021-10-27 13:30:06.475203"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:06.476049"], ["updated_at", "2021-10-27 13:30:06.476049"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 245], ["created_at", "2021-10-27 13:30:06.477446"], ["updated_at", "2021-10-27 13:30:06.477446"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 245], ["created_at", "2021-10-27 13:30:06.478856"], ["updated_at", "2021-10-27 13:30:06.478856"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 247], ["created_at", "2021-10-27 13:30:06.480248"], ["updated_at", "2021-10-27 13:30:06.480248"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 245], ["created_at", "2021-10-27 13:30:06.481574"], ["updated_at", "2021-10-27 13:30:06.481574"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.486047"], ["updated_at", "2021-10-27 13:30:06.486047"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:06.487277"], ["updated_at", "2021-10-27 13:30:06.487277"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:06.488398"], ["updated_at", "2021-10-27 13:30:06.488398"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 248], ["created_at", "2021-10-27 13:30:06.490238"], ["updated_at", "2021-10-27 13:30:06.490238"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 248], ["created_at", "2021-10-27 13:30:06.491391"], ["updated_at", "2021-10-27 13:30:06.491391"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 250], ["created_at", "2021-10-27 13:30:06.492592"], ["updated_at", "2021-10-27 13:30:06.492592"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 248], ["created_at", "2021-10-27 13:30:06.494047"], ["updated_at", "2021-10-27 13:30:06.494047"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.497406"], ["updated_at", "2021-10-27 13:30:06.497406"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:06.498571"], ["updated_at", "2021-10-27 13:30:06.498571"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:06.499654"], ["updated_at", "2021-10-27 13:30:06.499654"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 251], ["created_at", "2021-10-27 13:30:06.500976"], ["updated_at", "2021-10-27 13:30:06.500976"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 251], ["created_at", "2021-10-27 13:30:06.502335"], ["updated_at", "2021-10-27 13:30:06.502335"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 253], ["created_at", "2021-10-27 13:30:06.503742"], ["updated_at", "2021-10-27 13:30:06.503742"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 251], ["created_at", "2021-10-27 13:30:06.505086"], ["updated_at", "2021-10-27 13:30:06.505086"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.508161"], ["updated_at", "2021-10-27 13:30:06.508161"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:06.509147"], ["updated_at", "2021-10-27 13:30:06.509147"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:06.510007"], ["updated_at", "2021-10-27 13:30:06.510007"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 254], ["created_at", "2021-10-27 13:30:06.511129"], ["updated_at", "2021-10-27 13:30:06.511129"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 254], ["created_at", "2021-10-27 13:30:06.512306"], ["updated_at", "2021-10-27 13:30:06.512306"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 256], ["created_at", "2021-10-27 13:30:06.513742"], ["updated_at", "2021-10-27 13:30:06.513742"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 254], ["created_at", "2021-10-27 13:30:06.515081"], ["updated_at", "2021-10-27 13:30:06.515081"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.517757"], ["updated_at", "2021-10-27 13:30:06.517757"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:06.518886"], ["updated_at", "2021-10-27 13:30:06.518886"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:06.520169"], ["updated_at", "2021-10-27 13:30:06.520169"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 257], ["created_at", "2021-10-27 13:30:06.521553"], ["updated_at", "2021-10-27 13:30:06.521553"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 257], ["created_at", "2021-10-27 13:30:06.523199"], ["updated_at", "2021-10-27 13:30:06.523199"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 259], ["created_at", "2021-10-27 13:30:06.524400"], ["updated_at", "2021-10-27 13:30:06.524400"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 257], ["created_at", "2021-10-27 13:30:06.525478"], ["updated_at", "2021-10-27 13:30:06.525478"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.7ms)[0m [1m[34mSELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.528278"], ["updated_at", "2021-10-27 13:30:06.528278"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:06.529407"], ["updated_at", "2021-10-27 13:30:06.529407"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:06.530480"], ["updated_at", "2021-10-27 13:30:06.530480"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 260], ["created_at", "2021-10-27 13:30:06.531775"], ["updated_at", "2021-10-27 13:30:06.531775"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 260], ["created_at", "2021-10-27 13:30:06.533116"], ["updated_at", "2021-10-27 13:30:06.533116"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 262], ["created_at", "2021-10-27 13:30:06.534501"], ["updated_at", "2021-10-27 13:30:06.534501"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 260], ["created_at", "2021-10-27 13:30:06.535985"], ["updated_at", "2021-10-27 13:30:06.535985"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 260], ["adoptable", true]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.538679"], ["updated_at", "2021-10-27 13:30:06.538679"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:06.539595"], ["updated_at", "2021-10-27 13:30:06.539595"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:06.540468"], ["updated_at", "2021-10-27 13:30:06.540468"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 263], ["created_at", "2021-10-27 13:30:06.541592"], ["updated_at", "2021-10-27 13:30:06.541592"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 263], ["created_at", "2021-10-27 13:30:06.542757"], ["updated_at", "2021-10-27 13:30:06.542757"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 265], ["created_at", "2021-10-27 13:30:06.543971"], ["updated_at", "2021-10-27 13:30:06.543971"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 263], ["created_at", "2021-10-27 13:30:06.545298"], ["updated_at", "2021-10-27 13:30:06.545298"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC[0m [["shelter_id", 263], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.548184"], ["updated_at", "2021-10-27 13:30:06.548184"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:06.549615"], ["updated_at", "2021-10-27 13:30:06.549615"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:06.550719"], ["updated_at", "2021-10-27 13:30:06.550719"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 266], ["created_at", "2021-10-27 13:30:06.552055"], ["updated_at", "2021-10-27 13:30:06.552055"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 266], ["created_at", "2021-10-27 13:30:06.553453"], ["updated_at", "2021-10-27 13:30:06.553453"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 268], ["created_at", "2021-10-27 13:30:06.554913"], ["updated_at", "2021-10-27 13:30:06.554913"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 266], ["created_at", "2021-10-27 13:30:06.556303"], ["updated_at", "2021-10-27 13:30:06.556303"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)[0m [["shelter_id", 266], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 13:30:06.559322"], ["updated_at", "2021-10-27 13:30:06.559322"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 13:30:06.560578"], ["updated_at", "2021-10-27 13:30:06.560578"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 13:30:06.561719"], ["updated_at", "2021-10-27 13:30:06.561719"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.9ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 269], ["created_at", "2021-10-27 13:30:06.563104"], ["updated_at", "2021-10-27 13:30:06.563104"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 269], ["created_at", "2021-10-27 13:30:06.564940"], ["updated_at", "2021-10-27 13:30:06.564940"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 271], ["created_at", "2021-10-27 13:30:06.566441"], ["updated_at", "2021-10-27 13:30:06.566441"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 269], ["created_at", "2021-10-27 13:30:06.567845"], ["updated_at", "2021-10-27 13:30:06.567845"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 269]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.570728"], ["updated_at", "2021-10-27 13:30:06.570728"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 128], ["created_at", "2021-10-27 13:30:06.572242"], ["updated_at", "2021-10-27 13:30:06.572242"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 128], ["created_at", "2021-10-27 13:30:06.573946"], ["updated_at", "2021-10-27 13:30:06.573946"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 128], ["created_at", "2021-10-27 13:30:06.575046"], ["updated_at", "2021-10-27 13:30:06.575046"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 128], ["created_at", "2021-10-27 13:30:06.576095"], ["updated_at", "2021-10-27 13:30:06.576095"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.579565"], ["updated_at", "2021-10-27 13:30:06.579565"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 129], ["created_at", "2021-10-27 13:30:06.580966"], ["updated_at", "2021-10-27 13:30:06.580966"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 129], ["created_at", "2021-10-27 13:30:06.582307"], ["updated_at", "2021-10-27 13:30:06.582307"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 129], ["created_at", "2021-10-27 13:30:06.583624"], ["updated_at", "2021-10-27 13:30:06.583624"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 129], ["created_at", "2021-10-27 13:30:06.584943"], ["updated_at", "2021-10-27 13:30:06.584943"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.590833"], ["updated_at", "2021-10-27 13:30:06.590833"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 130], ["created_at", "2021-10-27 13:30:06.592116"], ["updated_at", "2021-10-27 13:30:06.592116"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 130], ["created_at", "2021-10-27 13:30:06.593172"], ["updated_at", "2021-10-27 13:30:06.593172"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 130], ["created_at", "2021-10-27 13:30:06.594214"], ["updated_at", "2021-10-27 13:30:06.594214"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 130], ["created_at", "2021-10-27 13:30:06.595295"], ["updated_at", "2021-10-27 13:30:06.595295"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.7ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.599614"], ["updated_at", "2021-10-27 13:30:06.599614"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 131], ["created_at", "2021-10-27 13:30:06.601325"], ["updated_at", "2021-10-27 13:30:06.601325"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 131], ["created_at", "2021-10-27 13:30:06.605478"], ["updated_at", "2021-10-27 13:30:06.605478"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 131], ["created_at", "2021-10-27 13:30:06.606812"], ["updated_at", "2021-10-27 13:30:06.606812"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 131], ["created_at", "2021-10-27 13:30:06.608189"], ["updated_at", "2021-10-27 13:30:06.608189"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.611667"], ["updated_at", "2021-10-27 13:30:06.611667"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 132], ["created_at", "2021-10-27 13:30:06.613113"], ["updated_at", "2021-10-27 13:30:06.613113"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 132], ["created_at", "2021-10-27 13:30:06.614617"], ["updated_at", "2021-10-27 13:30:06.614617"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 132], ["created_at", "2021-10-27 13:30:06.615995"], ["updated_at", "2021-10-27 13:30:06.615995"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 132], ["created_at", "2021-10-27 13:30:06.617311"], ["updated_at", "2021-10-27 13:30:06.617311"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE (name ILIKE '%Ta%')[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.620111"], ["updated_at", "2021-10-27 13:30:06.620111"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 133], ["created_at", "2021-10-27 13:30:06.621296"], ["updated_at", "2021-10-27 13:30:06.621296"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 133], ["created_at", "2021-10-27 13:30:06.622340"], ["updated_at", "2021-10-27 13:30:06.622340"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 133], ["created_at", "2021-10-27 13:30:06.623756"], ["updated_at", "2021-10-27 13:30:06.623756"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 133], ["created_at", "2021-10-27 13:30:06.625166"], ["updated_at", "2021-10-27 13:30:06.625166"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.627551"], ["updated_at", "2021-10-27 13:30:06.627551"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.8ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 134], ["created_at", "2021-10-27 13:30:06.628915"], ["updated_at", "2021-10-27 13:30:06.628915"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 134], ["created_at", "2021-10-27 13:30:06.630608"], ["updated_at", "2021-10-27 13:30:06.630608"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 134], ["created_at", "2021-10-27 13:30:06.631918"], ["updated_at", "2021-10-27 13:30:06.631918"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 134], ["created_at", "2021-10-27 13:30:06.633412"], ["updated_at", "2021-10-27 13:30:06.633412"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.635202"], ["updated_at", "2021-10-27 13:30:06.635202"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.636081"], ["updated_at", "2021-10-27 13:30:06.636081"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 135], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 135], ["created_at", "2021-10-27 13:30:06.637418"], ["updated_at", "2021-10-27 13:30:06.637418"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 135], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 135], ["created_at", "2021-10-27 13:30:06.638783"], ["updated_at", "2021-10-27 13:30:06.638783"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 135], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 135], ["created_at", "2021-10-27 13:30:06.640546"], ["updated_at", "2021-10-27 13:30:06.640546"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 136], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.9ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 136], ["created_at", "2021-10-27 13:30:06.642404"], ["updated_at", "2021-10-27 13:30:06.642404"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.644926"], ["updated_at", "2021-10-27 13:30:06.644926"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.646057"], ["updated_at", "2021-10-27 13:30:06.646057"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 137], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 137], ["created_at", "2021-10-27 13:30:06.647655"], ["updated_at", "2021-10-27 13:30:06.647655"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 137], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 137], ["created_at", "2021-10-27 13:30:06.649361"], ["updated_at", "2021-10-27 13:30:06.649361"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 137], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 137], ["created_at", "2021-10-27 13:30:06.651060"], ["updated_at", "2021-10-27 13:30:06.651060"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 138], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 138], ["created_at", "2021-10-27 13:30:06.652686"], ["updated_at", "2021-10-27 13:30:06.652686"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.658184"], ["updated_at", "2021-10-27 13:30:06.658184"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.659292"], ["updated_at", "2021-10-27 13:30:06.659292"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 139], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 139], ["created_at", "2021-10-27 13:30:06.660904"], ["updated_at", "2021-10-27 13:30:06.660904"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 139], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 139], ["created_at", "2021-10-27 13:30:06.662657"], ["updated_at", "2021-10-27 13:30:06.662657"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 139], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 139], ["created_at", "2021-10-27 13:30:06.664333"], ["updated_at", "2021-10-27 13:30:06.664333"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 140], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 140], ["created_at", "2021-10-27 13:30:06.665997"], ["updated_at", "2021-10-27 13:30:06.665997"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.670101"], ["updated_at", "2021-10-27 13:30:06.670101"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.671306"], ["updated_at", "2021-10-27 13:30:06.671306"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 141], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 141], ["created_at", "2021-10-27 13:30:06.673562"], ["updated_at", "2021-10-27 13:30:06.673562"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 141], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 141], ["created_at", "2021-10-27 13:30:06.674994"], ["updated_at", "2021-10-27 13:30:06.674994"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 141], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 141], ["created_at", "2021-10-27 13:30:06.676252"], ["updated_at", "2021-10-27 13:30:06.676252"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 142], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 142], ["created_at", "2021-10-27 13:30:06.677617"], ["updated_at", "2021-10-27 13:30:06.677617"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.680734"], ["updated_at", "2021-10-27 13:30:06.680734"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.681966"], ["updated_at", "2021-10-27 13:30:06.681966"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 143], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 143], ["created_at", "2021-10-27 13:30:06.683691"], ["updated_at", "2021-10-27 13:30:06.683691"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 143], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 143], ["created_at", "2021-10-27 13:30:06.685488"], ["updated_at", "2021-10-27 13:30:06.685488"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 143], ["LIMIT", 1]]
[1m[36mVeterinarian Create (1.0ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 143], ["created_at", "2021-10-27 13:30:06.687126"], ["updated_at", "2021-10-27 13:30:06.687126"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 144], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 144], ["created_at", "2021-10-27 13:30:06.689280"], ["updated_at", "2021-10-27 13:30:06.689280"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE (name ILIKE '%Vets%')[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.691565"], ["updated_at", "2021-10-27 13:30:06.691565"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.692518"], ["updated_at", "2021-10-27 13:30:06.692518"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 145], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 145], ["created_at", "2021-10-27 13:30:06.693859"], ["updated_at", "2021-10-27 13:30:06.693859"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 145], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 145], ["created_at", "2021-10-27 13:30:06.695888"], ["updated_at", "2021-10-27 13:30:06.695888"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 145], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 145], ["created_at", "2021-10-27 13:30:06.697673"], ["updated_at", "2021-10-27 13:30:06.697673"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 146], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 146], ["created_at", "2021-10-27 13:30:06.699355"], ["updated_at", "2021-10-27 13:30:06.699355"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.702185"], ["updated_at", "2021-10-27 13:30:06.702185"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.703326"], ["updated_at", "2021-10-27 13:30:06.703326"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 147], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 147], ["created_at", "2021-10-27 13:30:06.704940"], ["updated_at", "2021-10-27 13:30:06.704940"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 147], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 147], ["created_at", "2021-10-27 13:30:06.706631"], ["updated_at", "2021-10-27 13:30:06.706631"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 147], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 147], ["created_at", "2021-10-27 13:30:06.708373"], ["updated_at", "2021-10-27 13:30:06.708373"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 148], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 148], ["created_at", "2021-10-27 13:30:06.710004"], ["updated_at", "2021-10-27 13:30:06.710004"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (1.2ms)[0m [1m[34mSELECT veterinary_offices.*, count(veterinarians.id) AS vets_count FROM "veterinary_offices" LEFT OUTER JOIN veterinarians ON veterinarians.veterinary_office_id = veterinary_offices.id GROUP BY veterinary_offices.id ORDER BY vets_count DESC[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.713614"], ["updated_at", "2021-10-27 13:30:06.713614"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.714866"], ["updated_at", "2021-10-27 13:30:06.714866"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 149], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 149], ["created_at", "2021-10-27 13:30:06.716451"], ["updated_at", "2021-10-27 13:30:06.716451"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 149], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 149], ["created_at", "2021-10-27 13:30:06.718122"], ["updated_at", "2021-10-27 13:30:06.718122"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 149], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 149], ["created_at", "2021-10-27 13:30:06.719735"], ["updated_at", "2021-10-27 13:30:06.719735"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 150], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 150], ["created_at", "2021-10-27 13:30:06.721362"], ["updated_at", "2021-10-27 13:30:06.721362"]]
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 149]]
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 150]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.725004"], ["updated_at", "2021-10-27 13:30:06.725004"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.726031"], ["updated_at", "2021-10-27 13:30:06.726031"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 151], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 151], ["created_at", "2021-10-27 13:30:06.727659"], ["updated_at", "2021-10-27 13:30:06.727659"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 151], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 151], ["created_at", "2021-10-27 13:30:06.729323"], ["updated_at", "2021-10-27 13:30:06.729323"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 151], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 151], ["created_at", "2021-10-27 13:30:06.731046"], ["updated_at", "2021-10-27 13:30:06.731046"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 152], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 152], ["created_at", "2021-10-27 13:30:06.732763"], ["updated_at", "2021-10-27 13:30:06.732763"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 ORDER BY "veterinarians"."name" ASC[0m [["veterinary_office_id", 151], ["on_call", true]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.736060"], ["updated_at", "2021-10-27 13:30:06.736060"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.737266"], ["updated_at", "2021-10-27 13:30:06.737266"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 153], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 153], ["created_at", "2021-10-27 13:30:06.738992"], ["updated_at", "2021-10-27 13:30:06.738992"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 153], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 153], ["created_at", "2021-10-27 13:30:06.740744"], ["updated_at", "2021-10-27 13:30:06.740744"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 153], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 153], ["created_at", "2021-10-27 13:30:06.742120"], ["updated_at", "2021-10-27 13:30:06.742120"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 154], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 154], ["created_at", "2021-10-27 13:30:06.743951"], ["updated_at", "2021-10-27 13:30:06.743951"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 153], ["on_call", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 13:30:06.746908"], ["updated_at", "2021-10-27 13:30:06.746908"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 13:30:06.748064"], ["updated_at", "2021-10-27 13:30:06.748064"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 155], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 155], ["created_at", "2021-10-27 13:30:06.749936"], ["updated_at", "2021-10-27 13:30:06.749936"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 155], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 155], ["created_at", "2021-10-27 13:30:06.751669"], ["updated_at", "2021-10-27 13:30:06.751669"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 155], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 155], ["created_at", "2021-10-27 13:30:06.753343"], ["updated_at", "2021-10-27 13:30:06.753343"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 156], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 156], ["created_at", "2021-10-27 13:30:06.754984"], ["updated_at", "2021-10-27 13:30:06.754984"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 AND (review_rating >= 9)[0m [["veterinary_office_id", 155], ["on_call", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (2.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 08:24:13 -0600
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (1.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 08:29:00 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application Rendered admin/shelters/index.html.erb within layouts/application (4.2ms)
Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (1.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 08:29:29 -0600 Processing by Admin::SheltersController#index as HTML
[1m[36mShelter Load (0.8ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m Rendering admin/shelters/index.html.erb within layouts/application Rendered admin/shelters/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 112ms (Views: 98.4ms | ActiveRecord: 3.8ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m [1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 08:29:44 -0600 Processing by Admin::SheltersController#index as HTML
[1m[36mShelter Load (1.4ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m Rendering admin/shelters/index.html.erb within layouts/application Rendered admin/shelters/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 107ms (Views: 93.5ms | ActiveRecord: 3.3ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:34:43.376062"], ["updated_at", "2021-10-27 14:34:43.376062"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:34:43.378788"], ["updated_at", "2021-10-27 14:34:43.378788"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:34:43.379733"], ["updated_at", "2021-10-27 14:34:43.379733"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 08:34:43 -0600 Processing by Admin::SheltersController#index as HTML
[1m[36mShelter Load (0.8ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m Rendering admin/shelters/index.html.erb within layouts/application Rendered admin/shelters/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 90ms (Views: 84.7ms | ActiveRecord: 0.8ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:34:56.628104"], ["updated_at", "2021-10-27 14:34:56.628104"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:34:56.631317"], ["updated_at", "2021-10-27 14:34:56.631317"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:34:56.632972"], ["updated_at", "2021-10-27 14:34:56.632972"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 08:34:56 -0600 Processing by Admin::SheltersController#index as HTML
[1m[36mShelter Load (0.8ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m Rendering admin/shelters/index.html.erb within layouts/application Rendered admin/shelters/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 97ms (Views: 90.8ms | ActiveRecord: 0.8ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:35:13.068590"], ["updated_at", "2021-10-27 14:35:13.068590"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:35:13.070415"], ["updated_at", "2021-10-27 14:35:13.070415"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:35:13.071650"], ["updated_at", "2021-10-27 14:35:13.071650"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 08:35:13 -0600 Processing by Admin::SheltersController#index as HTML
[1m[36mShelter Load (1.0ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m Rendering admin/shelters/index.html.erb within layouts/application Rendered admin/shelters/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 82ms (Views: 77.2ms | ActiveRecord: 1.0ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.9ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.182576"], ["updated_at", "2021-10-27 14:39:16.182576"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.185635"], ["updated_at", "2021-10-27 14:39:16.185635"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.186866"], ["updated_at", "2021-10-27 14:39:16.186866"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 281], ["created_at", "2021-10-27 14:39:16.230649"], ["updated_at", "2021-10-27 14:39:16.230649"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 281], ["created_at", "2021-10-27 14:39:16.232998"], ["updated_at", "2021-10-27 14:39:16.232998"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 283], ["created_at", "2021-10-27 14:39:16.234462"], ["updated_at", "2021-10-27 14:39:16.234462"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 281], ["created_at", "2021-10-27 14:39:16.235774"], ["updated_at", "2021-10-27 14:39:16.235774"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.271231"], ["updated_at", "2021-10-27 14:39:16.271231"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.272441"], ["updated_at", "2021-10-27 14:39:16.272441"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.273250"], ["updated_at", "2021-10-27 14:39:16.273250"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 284], ["created_at", "2021-10-27 14:39:16.274352"], ["updated_at", "2021-10-27 14:39:16.274352"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 284], ["created_at", "2021-10-27 14:39:16.275599"], ["updated_at", "2021-10-27 14:39:16.275599"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 286], ["created_at", "2021-10-27 14:39:16.276857"], ["updated_at", "2021-10-27 14:39:16.276857"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 284], ["created_at", "2021-10-27 14:39:16.278101"], ["updated_at", "2021-10-27 14:39:16.278101"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.284878"], ["updated_at", "2021-10-27 14:39:16.284878"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.285952"], ["updated_at", "2021-10-27 14:39:16.285952"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.286765"], ["updated_at", "2021-10-27 14:39:16.286765"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 287], ["created_at", "2021-10-27 14:39:16.287753"], ["updated_at", "2021-10-27 14:39:16.287753"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 287], ["created_at", "2021-10-27 14:39:16.289008"], ["updated_at", "2021-10-27 14:39:16.289008"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 289], ["created_at", "2021-10-27 14:39:16.290306"], ["updated_at", "2021-10-27 14:39:16.290306"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 287], ["created_at", "2021-10-27 14:39:16.291234"], ["updated_at", "2021-10-27 14:39:16.291234"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.295703"], ["updated_at", "2021-10-27 14:39:16.295703"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.296790"], ["updated_at", "2021-10-27 14:39:16.296790"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.297815"], ["updated_at", "2021-10-27 14:39:16.297815"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 290], ["created_at", "2021-10-27 14:39:16.298809"], ["updated_at", "2021-10-27 14:39:16.298809"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 290], ["created_at", "2021-10-27 14:39:16.299810"], ["updated_at", "2021-10-27 14:39:16.299810"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 292], ["created_at", "2021-10-27 14:39:16.301112"], ["updated_at", "2021-10-27 14:39:16.301112"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 290], ["created_at", "2021-10-27 14:39:16.302322"], ["updated_at", "2021-10-27 14:39:16.302322"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.305822"], ["updated_at", "2021-10-27 14:39:16.305822"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.306642"], ["updated_at", "2021-10-27 14:39:16.306642"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.307425"], ["updated_at", "2021-10-27 14:39:16.307425"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 293], ["created_at", "2021-10-27 14:39:16.308637"], ["updated_at", "2021-10-27 14:39:16.308637"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 293], ["created_at", "2021-10-27 14:39:16.310037"], ["updated_at", "2021-10-27 14:39:16.310037"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 295], ["created_at", "2021-10-27 14:39:16.311550"], ["updated_at", "2021-10-27 14:39:16.311550"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 293], ["created_at", "2021-10-27 14:39:16.312537"], ["updated_at", "2021-10-27 14:39:16.312537"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.315483"], ["updated_at", "2021-10-27 14:39:16.315483"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.316598"], ["updated_at", "2021-10-27 14:39:16.316598"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.317618"], ["updated_at", "2021-10-27 14:39:16.317618"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 296], ["created_at", "2021-10-27 14:39:16.318629"], ["updated_at", "2021-10-27 14:39:16.318629"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 296], ["created_at", "2021-10-27 14:39:16.319628"], ["updated_at", "2021-10-27 14:39:16.319628"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 298], ["created_at", "2021-10-27 14:39:16.320927"], ["updated_at", "2021-10-27 14:39:16.320927"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 296], ["created_at", "2021-10-27 14:39:16.322096"], ["updated_at", "2021-10-27 14:39:16.322096"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.7ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.325739"], ["updated_at", "2021-10-27 14:39:16.325739"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.326759"], ["updated_at", "2021-10-27 14:39:16.326759"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.327584"], ["updated_at", "2021-10-27 14:39:16.327584"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 299], ["created_at", "2021-10-27 14:39:16.329021"], ["updated_at", "2021-10-27 14:39:16.329021"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 299], ["created_at", "2021-10-27 14:39:16.330264"], ["updated_at", "2021-10-27 14:39:16.330264"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 301], ["created_at", "2021-10-27 14:39:16.331328"], ["updated_at", "2021-10-27 14:39:16.331328"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 299], ["created_at", "2021-10-27 14:39:16.332587"], ["updated_at", "2021-10-27 14:39:16.332587"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.9ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.335454"], ["updated_at", "2021-10-27 14:39:16.335454"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.336538"], ["updated_at", "2021-10-27 14:39:16.336538"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.337554"], ["updated_at", "2021-10-27 14:39:16.337554"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 302], ["created_at", "2021-10-27 14:39:16.338627"], ["updated_at", "2021-10-27 14:39:16.338627"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 302], ["created_at", "2021-10-27 14:39:16.339700"], ["updated_at", "2021-10-27 14:39:16.339700"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 304], ["created_at", "2021-10-27 14:39:16.341213"], ["updated_at", "2021-10-27 14:39:16.341213"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 302], ["created_at", "2021-10-27 14:39:16.342262"], ["updated_at", "2021-10-27 14:39:16.342262"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (1.6ms)[0m [1m[34mSELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.348204"], ["updated_at", "2021-10-27 14:39:16.348204"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.349279"], ["updated_at", "2021-10-27 14:39:16.349279"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.350138"], ["updated_at", "2021-10-27 14:39:16.350138"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 305], ["created_at", "2021-10-27 14:39:16.351215"], ["updated_at", "2021-10-27 14:39:16.351215"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 305], ["created_at", "2021-10-27 14:39:16.352590"], ["updated_at", "2021-10-27 14:39:16.352590"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 307], ["created_at", "2021-10-27 14:39:16.354350"], ["updated_at", "2021-10-27 14:39:16.354350"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 305], ["created_at", "2021-10-27 14:39:16.355450"], ["updated_at", "2021-10-27 14:39:16.355450"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.357622"], ["updated_at", "2021-10-27 14:39:16.357622"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.358510"], ["updated_at", "2021-10-27 14:39:16.358510"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.359359"], ["updated_at", "2021-10-27 14:39:16.359359"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 308], ["created_at", "2021-10-27 14:39:16.360657"], ["updated_at", "2021-10-27 14:39:16.360657"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 308], ["created_at", "2021-10-27 14:39:16.361866"], ["updated_at", "2021-10-27 14:39:16.361866"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 310], ["created_at", "2021-10-27 14:39:16.362980"], ["updated_at", "2021-10-27 14:39:16.362980"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 308], ["created_at", "2021-10-27 14:39:16.364298"], ["updated_at", "2021-10-27 14:39:16.364298"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 308], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.368064"], ["updated_at", "2021-10-27 14:39:16.368064"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.369531"], ["updated_at", "2021-10-27 14:39:16.369531"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.370380"], ["updated_at", "2021-10-27 14:39:16.370380"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 311], ["created_at", "2021-10-27 14:39:16.371411"], ["updated_at", "2021-10-27 14:39:16.371411"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 311], ["created_at", "2021-10-27 14:39:16.372396"], ["updated_at", "2021-10-27 14:39:16.372396"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 313], ["created_at", "2021-10-27 14:39:16.373452"], ["updated_at", "2021-10-27 14:39:16.373452"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 311], ["created_at", "2021-10-27 14:39:16.374423"], ["updated_at", "2021-10-27 14:39:16.374423"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC[0m [["shelter_id", 311], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.376931"], ["updated_at", "2021-10-27 14:39:16.376931"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.377786"], ["updated_at", "2021-10-27 14:39:16.377786"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.378576"], ["updated_at", "2021-10-27 14:39:16.378576"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 314], ["created_at", "2021-10-27 14:39:16.379674"], ["updated_at", "2021-10-27 14:39:16.379674"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 314], ["created_at", "2021-10-27 14:39:16.381101"], ["updated_at", "2021-10-27 14:39:16.381101"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 316], ["created_at", "2021-10-27 14:39:16.382285"], ["updated_at", "2021-10-27 14:39:16.382285"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 314], ["created_at", "2021-10-27 14:39:16.383429"], ["updated_at", "2021-10-27 14:39:16.383429"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)[0m [["shelter_id", 314], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:16.386150"], ["updated_at", "2021-10-27 14:39:16.386150"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:16.387052"], ["updated_at", "2021-10-27 14:39:16.387052"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:16.388133"], ["updated_at", "2021-10-27 14:39:16.388133"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 317], ["created_at", "2021-10-27 14:39:16.389375"], ["updated_at", "2021-10-27 14:39:16.389375"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 317], ["created_at", "2021-10-27 14:39:16.390440"], ["updated_at", "2021-10-27 14:39:16.390440"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 319], ["created_at", "2021-10-27 14:39:16.391623"], ["updated_at", "2021-10-27 14:39:16.391623"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 317], ["created_at", "2021-10-27 14:39:16.393035"], ["updated_at", "2021-10-27 14:39:16.393035"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 317]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.442592"], ["updated_at", "2021-10-27 14:39:27.442592"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.444718"], ["updated_at", "2021-10-27 14:39:27.444718"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.445636"], ["updated_at", "2021-10-27 14:39:27.445636"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (2.0ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 320], ["created_at", "2021-10-27 14:39:27.480338"], ["updated_at", "2021-10-27 14:39:27.480338"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 320], ["created_at", "2021-10-27 14:39:27.483559"], ["updated_at", "2021-10-27 14:39:27.483559"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 322], ["created_at", "2021-10-27 14:39:27.484843"], ["updated_at", "2021-10-27 14:39:27.484843"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 320], ["created_at", "2021-10-27 14:39:27.486099"], ["updated_at", "2021-10-27 14:39:27.486099"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.527399"], ["updated_at", "2021-10-27 14:39:27.527399"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.528400"], ["updated_at", "2021-10-27 14:39:27.528400"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.529349"], ["updated_at", "2021-10-27 14:39:27.529349"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 323], ["created_at", "2021-10-27 14:39:27.530722"], ["updated_at", "2021-10-27 14:39:27.530722"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 323], ["created_at", "2021-10-27 14:39:27.531969"], ["updated_at", "2021-10-27 14:39:27.531969"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 325], ["created_at", "2021-10-27 14:39:27.533138"], ["updated_at", "2021-10-27 14:39:27.533138"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 323], ["created_at", "2021-10-27 14:39:27.534476"], ["updated_at", "2021-10-27 14:39:27.534476"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.540956"], ["updated_at", "2021-10-27 14:39:27.540956"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.542067"], ["updated_at", "2021-10-27 14:39:27.542067"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.542985"], ["updated_at", "2021-10-27 14:39:27.542985"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 326], ["created_at", "2021-10-27 14:39:27.543985"], ["updated_at", "2021-10-27 14:39:27.543985"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 326], ["created_at", "2021-10-27 14:39:27.545026"], ["updated_at", "2021-10-27 14:39:27.545026"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 328], ["created_at", "2021-10-27 14:39:27.546344"], ["updated_at", "2021-10-27 14:39:27.546344"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 326], ["created_at", "2021-10-27 14:39:27.547312"], ["updated_at", "2021-10-27 14:39:27.547312"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.551808"], ["updated_at", "2021-10-27 14:39:27.551808"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.552717"], ["updated_at", "2021-10-27 14:39:27.552717"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.553789"], ["updated_at", "2021-10-27 14:39:27.553789"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 329], ["created_at", "2021-10-27 14:39:27.555056"], ["updated_at", "2021-10-27 14:39:27.555056"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 329], ["created_at", "2021-10-27 14:39:27.556142"], ["updated_at", "2021-10-27 14:39:27.556142"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 331], ["created_at", "2021-10-27 14:39:27.557559"], ["updated_at", "2021-10-27 14:39:27.557559"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 329], ["created_at", "2021-10-27 14:39:27.558833"], ["updated_at", "2021-10-27 14:39:27.558833"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.562484"], ["updated_at", "2021-10-27 14:39:27.562484"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.563340"], ["updated_at", "2021-10-27 14:39:27.563340"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.564162"], ["updated_at", "2021-10-27 14:39:27.564162"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 332], ["created_at", "2021-10-27 14:39:27.565466"], ["updated_at", "2021-10-27 14:39:27.565466"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 332], ["created_at", "2021-10-27 14:39:27.567267"], ["updated_at", "2021-10-27 14:39:27.567267"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 334], ["created_at", "2021-10-27 14:39:27.568543"], ["updated_at", "2021-10-27 14:39:27.568543"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 332], ["created_at", "2021-10-27 14:39:27.569560"], ["updated_at", "2021-10-27 14:39:27.569560"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.572459"], ["updated_at", "2021-10-27 14:39:27.572459"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.573599"], ["updated_at", "2021-10-27 14:39:27.573599"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.574618"], ["updated_at", "2021-10-27 14:39:27.574618"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 335], ["created_at", "2021-10-27 14:39:27.575665"], ["updated_at", "2021-10-27 14:39:27.575665"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 335], ["created_at", "2021-10-27 14:39:27.576733"], ["updated_at", "2021-10-27 14:39:27.576733"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 337], ["created_at", "2021-10-27 14:39:27.578090"], ["updated_at", "2021-10-27 14:39:27.578090"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 335], ["created_at", "2021-10-27 14:39:27.579151"], ["updated_at", "2021-10-27 14:39:27.579151"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.7ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.583027"], ["updated_at", "2021-10-27 14:39:27.583027"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.584265"], ["updated_at", "2021-10-27 14:39:27.584265"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.585063"], ["updated_at", "2021-10-27 14:39:27.585063"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 338], ["created_at", "2021-10-27 14:39:27.586142"], ["updated_at", "2021-10-27 14:39:27.586142"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 338], ["created_at", "2021-10-27 14:39:27.587189"], ["updated_at", "2021-10-27 14:39:27.587189"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 340], ["created_at", "2021-10-27 14:39:27.588306"], ["updated_at", "2021-10-27 14:39:27.588306"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 338], ["created_at", "2021-10-27 14:39:27.589632"], ["updated_at", "2021-10-27 14:39:27.589632"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.9ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.592427"], ["updated_at", "2021-10-27 14:39:27.592427"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.593650"], ["updated_at", "2021-10-27 14:39:27.593650"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.594493"], ["updated_at", "2021-10-27 14:39:27.594493"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 341], ["created_at", "2021-10-27 14:39:27.595520"], ["updated_at", "2021-10-27 14:39:27.595520"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 341], ["created_at", "2021-10-27 14:39:27.596760"], ["updated_at", "2021-10-27 14:39:27.596760"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 343], ["created_at", "2021-10-27 14:39:27.598194"], ["updated_at", "2021-10-27 14:39:27.598194"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 341], ["created_at", "2021-10-27 14:39:27.599287"], ["updated_at", "2021-10-27 14:39:27.599287"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (1.6ms)[0m [1m[34mSELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.604797"], ["updated_at", "2021-10-27 14:39:27.604797"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.605781"], ["updated_at", "2021-10-27 14:39:27.605781"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.606545"], ["updated_at", "2021-10-27 14:39:27.606545"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 344], ["created_at", "2021-10-27 14:39:27.607560"], ["updated_at", "2021-10-27 14:39:27.607560"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 344], ["created_at", "2021-10-27 14:39:27.608889"], ["updated_at", "2021-10-27 14:39:27.608889"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 346], ["created_at", "2021-10-27 14:39:27.610339"], ["updated_at", "2021-10-27 14:39:27.610339"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 344], ["created_at", "2021-10-27 14:39:27.611587"], ["updated_at", "2021-10-27 14:39:27.611587"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.6ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.614287"], ["updated_at", "2021-10-27 14:39:27.614287"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.615203"], ["updated_at", "2021-10-27 14:39:27.615203"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.616233"], ["updated_at", "2021-10-27 14:39:27.616233"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 347], ["created_at", "2021-10-27 14:39:27.617491"], ["updated_at", "2021-10-27 14:39:27.617491"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 347], ["created_at", "2021-10-27 14:39:27.618560"], ["updated_at", "2021-10-27 14:39:27.618560"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 349], ["created_at", "2021-10-27 14:39:27.619630"], ["updated_at", "2021-10-27 14:39:27.619630"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 347], ["created_at", "2021-10-27 14:39:27.620802"], ["updated_at", "2021-10-27 14:39:27.620802"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 347], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.624353"], ["updated_at", "2021-10-27 14:39:27.624353"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.625408"], ["updated_at", "2021-10-27 14:39:27.625408"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.626193"], ["updated_at", "2021-10-27 14:39:27.626193"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 350], ["created_at", "2021-10-27 14:39:27.627260"], ["updated_at", "2021-10-27 14:39:27.627260"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 350], ["created_at", "2021-10-27 14:39:27.628468"], ["updated_at", "2021-10-27 14:39:27.628468"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 352], ["created_at", "2021-10-27 14:39:27.629677"], ["updated_at", "2021-10-27 14:39:27.629677"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 350], ["created_at", "2021-10-27 14:39:27.630717"], ["updated_at", "2021-10-27 14:39:27.630717"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC[0m [["shelter_id", 350], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.633104"], ["updated_at", "2021-10-27 14:39:27.633104"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.633997"], ["updated_at", "2021-10-27 14:39:27.633997"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.634825"], ["updated_at", "2021-10-27 14:39:27.634825"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 353], ["created_at", "2021-10-27 14:39:27.635929"], ["updated_at", "2021-10-27 14:39:27.635929"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 353], ["created_at", "2021-10-27 14:39:27.637244"], ["updated_at", "2021-10-27 14:39:27.637244"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 355], ["created_at", "2021-10-27 14:39:27.638495"], ["updated_at", "2021-10-27 14:39:27.638495"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 353], ["created_at", "2021-10-27 14:39:27.639558"], ["updated_at", "2021-10-27 14:39:27.639558"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)[0m [["shelter_id", 353], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 14:39:27.642427"], ["updated_at", "2021-10-27 14:39:27.642427"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 14:39:27.643351"], ["updated_at", "2021-10-27 14:39:27.643351"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 14:39:27.644469"], ["updated_at", "2021-10-27 14:39:27.644469"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 356], ["created_at", "2021-10-27 14:39:27.645775"], ["updated_at", "2021-10-27 14:39:27.645775"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 356], ["created_at", "2021-10-27 14:39:27.646880"], ["updated_at", "2021-10-27 14:39:27.646880"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 358], ["created_at", "2021-10-27 14:39:27.648175"], ["updated_at", "2021-10-27 14:39:27.648175"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 356], ["created_at", "2021-10-27 14:39:27.649591"], ["updated_at", "2021-10-27 14:39:27.649591"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 356]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.9ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.5ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:00:18.420789"], ["updated_at", "2021-10-27 17:00:18.420789"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:00:18.423635"], ["updated_at", "2021-10-27 17:00:18.423635"]]
[1m[35m (0.4ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:00:18.425209"], ["updated_at", "2021-10-27 17:00:18.425209"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:00:18 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application
[1m[36mShelter Load (1.0ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m
[1m[36mShelter Load (1.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters"[0m
[1m[36mShelter Load (2.7ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" INNER JOIN "pets" ON "pets"."shelter_id" = "shelters"."id"[0m
[1m[36mPet Load (1.5ms)[0m [1m[34mSELECT "pets".* FROM "pets"[0m
[1m[36mApplication Load (2.1ms)[0m [1m[34mSELECT "applications".* FROM "applications"[0m
[1m[35m (26.2ms)[0m [1m[35mDROP DATABASE IF EXISTS "adopt_dont_shop_test"[0m
[1m[35m (169.4ms)[0m [1m[35mCREATE DATABASE "adopt_dont_shop_test" ENCODING = 'unicode'[0m
[1m[35mSQL (0.9ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
[1m[35m (2.1ms)[0m [1m[35mDROP TABLE IF EXISTS "application_pets" CASCADE[0m
[1m[35m (8.3ms)[0m [1m[35mCREATE TABLE "application_pets" ("id" bigserial primary key, "pet_id" bigint, "application_id" bigint, "status" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (1.2ms)[0m [1m[35mCREATE INDEX "index_application_pets_on_application_id" ON "application_pets" ("application_id")[0m
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_application_pets_on_pet_id" ON "application_pets" ("pet_id")[0m
[1m[35m (0.5ms)[0m [1m[35mDROP TABLE IF EXISTS "applications" CASCADE[0m
[1m[35m (3.5ms)[0m [1m[35mCREATE TABLE "applications" ("id" bigserial primary key, "applicant_name" character varying, "street_address" character varying, "city" character varying, "state" character varying, "zipcode" character varying, "application_status" character varying, "why" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "pets" CASCADE[0m
[1m[35m (3.0ms)[0m [1m[35mCREATE TABLE "pets" ("id" bigserial primary key, "adoptable" boolean, "age" integer, "breed" character varying, "name" character varying, "shelter_id" bigint NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (2.5ms)[0m [1m[35mCREATE INDEX "index_pets_on_shelter_id" ON "pets" ("shelter_id")[0m
[1m[35m (0.3ms)[0m [1m[35mDROP TABLE IF EXISTS "shelters" CASCADE[0m
[1m[35m (3.4ms)[0m [1m[35mCREATE TABLE "shelters" ("id" bigserial primary key, "foster_program" boolean, "name" character varying, "city" character varying, "rank" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (2.9ms)[0m [1m[35mDROP TABLE IF EXISTS "veterinarians" CASCADE[0m
[1m[35m (3.8ms)[0m [1m[35mCREATE TABLE "veterinarians" ("id" bigserial primary key, "on_call" boolean, "review_rating" integer, "name" character varying, "veterinary_office_id" bigint, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_veterinarians_on_veterinary_office_id" ON "veterinarians" ("veterinary_office_id")[0m
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "veterinary_offices" CASCADE[0m
[1m[35m (3.5ms)[0m [1m[35mCREATE TABLE "veterinary_offices" ("id" bigserial primary key, "boarding_services" boolean, "max_patient_capacity" integer, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[35m (3.0ms)[0m [1m[35mALTER TABLE "application_pets" ADD CONSTRAINT "fk_rails_6ac8983e3b"
FOREIGN KEY (“application_id”)
REFERENCES "applications" ("id")
[0m
[1m[35m (1.4ms)[0m [1m[35mALTER TABLE "application_pets" ADD CONSTRAINT "fk_rails_412710cd26"
FOREIGN KEY (“pet_id”)
REFERENCES "pets" ("id")
[0m
[1m[35m (1.3ms)[0m [1m[35mALTER TABLE "pets" ADD CONSTRAINT "fk_rails_92fb5d7a05"
FOREIGN KEY (“shelter_id”)
REFERENCES "shelters" ("id")
[0m
[1m[35m (1.6ms)[0m [1m[35mALTER TABLE "veterinarians" ADD CONSTRAINT "fk_rails_d296209ae6"
FOREIGN KEY (“veterinary_office_id”)
REFERENCES "veterinary_offices" ("id")
[0m
[1m[35m (2.4ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.3ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (20211024000652)[0m
[1m[35m (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES
(20210212235502), (20210213001632), (20210212235735), (20211023230147), (20210213001717);
[0m
[1m[35m (4.6ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[36mActiveRecord::InternalMetadata Create (0.3ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "test"], ["created_at", "2021-10-27 17:39:55.336687"], ["updated_at", "2021-10-27 17:39:55.336687"]]
[1m[35m (0.2ms)[0m [1m[35mCOMMIT[0m
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
[1m[35m (0.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:39:55.428706"], ["updated_at", "2021-10-27 17:39:55.428706"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:39:55.431276"], ["updated_at", "2021-10-27 17:39:55.431276"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.1ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:39:55.432266"], ["updated_at", "2021-10-27 17:39:55.432266"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:39:55 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (6.4ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (1.0ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (ap plications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (117.6ms)
Completed 500 Internal Server Error in 124ms (ActiveRecord: 100.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:39:55.634231"], ["updated_at", "2021-10-27 17:39:55.634231"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:39:55.635574"], ["updated_at", "2021-10-27 17:39:55.635574"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:39:55.636474"], ["updated_at", "2021-10-27 17:39:55.636474"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 4], ["created_at", "2021-10-27 17:39:55.646906"], ["updated_at", "2021-10-27 17:39:55.646906"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 4], ["created_at", "2021-10-27 17:39:55.649299"], ["updated_at", "2021-10-27 17:39:55.649299"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 5], ["created_at", "2021-10-27 17:39:55.652659"], ["updated_at", "2021-10-27 17:39:55.652659"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 6], ["created_at", "2021-10-27 17:39:55.654227"], ["updated_at", "2021-10-27 17:39:55.654227"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.7ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (1.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 17:39:55.664366"], ["updated_at", "2021-10-27 17:39:55.664366"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 17:39:55.666664"], ["updated_at", "2021-10-27 17:39:55.666664"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.5ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 1], ["LIMIT", 1]]
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 1], ["LIMIT", 1]]
[1m[36mApplicationPet Create (3.1ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 1], ["application_id", 1], ["created_at", "2021-10-27 17:39:55.694124"], ["updated_at", "2021-10-27 17:39:55.694124"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 4], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.7ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 4], ["application_id", 2], ["created_at", "2021-10-27 17:39:55.699321"], ["updated_at", "2021-10-27 17:39:55.699321"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:39:55 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (0.5ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (ap plications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (2.3ms)
Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.9ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:40:10.543132"], ["updated_at", "2021-10-27 17:40:10.543132"]]
[1m[35m (0.7ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (1.5ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:40:10.547443"], ["updated_at", "2021-10-27 17:40:10.547443"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:40:10.548618"], ["updated_at", "2021-10-27 17:40:10.548618"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:40:10 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (1.4ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (5.6ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (38.3ms)
Completed 200 OK in 142ms (Views: 110.3ms | ActiveRecord: 27.8ms)
[1m[35m (0.5ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:40:10.748855"], ["updated_at", "2021-10-27 17:40:10.748855"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:40:10.750042"], ["updated_at", "2021-10-27 17:40:10.750042"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:40:10.750912"], ["updated_at", "2021-10-27 17:40:10.750912"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.0ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 10], ["created_at", "2021-10-27 17:40:10.759893"], ["updated_at", "2021-10-27 17:40:10.759893"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 10], ["created_at", "2021-10-27 17:40:10.761801"], ["updated_at", "2021-10-27 17:40:10.761801"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 11], ["created_at", "2021-10-27 17:40:10.763061"], ["updated_at", "2021-10-27 17:40:10.763061"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 12], ["created_at", "2021-10-27 17:40:10.764522"], ["updated_at", "2021-10-27 17:40:10.764522"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.8ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 17:40:10.774031"], ["updated_at", "2021-10-27 17:40:10.774031"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (1.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 17:40:10.775684"], ["updated_at", "2021-10-27 17:40:10.775684"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 3], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]]
[1m[36mApplicationPet Create (1.2ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 5], ["application_id", 3], ["created_at", "2021-10-27 17:40:10.815512"], ["updated_at", "2021-10-27 17:40:10.815512"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 4], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]]
[1m[36mApplicationPet Create (1.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 8], ["application_id", 4], ["created_at", "2021-10-27 17:40:10.818652"], ["updated_at", "2021-10-27 17:40:10.818652"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:40:10 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (3.3ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (4.7ms)
Completed 200 OK in 6ms (Views: 1.6ms | ActiveRecord: 3.7ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (2.0ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:44:33.855872"], ["updated_at", "2021-10-27 17:44:33.855872"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:44:33.858094"], ["updated_at", "2021-10-27 17:44:33.858094"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:44:33.859163"], ["updated_at", "2021-10-27 17:44:33.859163"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:44:33 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.9ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (4.2ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (38.3ms)
Completed 200 OK in 131ms (Views: 100.4ms | ActiveRecord: 26.7ms)
[1m[35m (3.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:44:34.054331"], ["updated_at", "2021-10-27 17:44:34.054331"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:44:34.055700"], ["updated_at", "2021-10-27 17:44:34.055700"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:44:34.056539"], ["updated_at", "2021-10-27 17:44:34.056539"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.9ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 16], ["created_at", "2021-10-27 17:44:34.065808"], ["updated_at", "2021-10-27 17:44:34.065808"]]
[1m[35m (1.7ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 16], ["created_at", "2021-10-27 17:44:34.069278"], ["updated_at", "2021-10-27 17:44:34.069278"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 17], ["created_at", "2021-10-27 17:44:34.070664"], ["updated_at", "2021-10-27 17:44:34.070664"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 18], ["created_at", "2021-10-27 17:44:34.072156"], ["updated_at", "2021-10-27 17:44:34.072156"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 17:44:34.086706"], ["updated_at", "2021-10-27 17:44:34.086706"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (3.9ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 17:44:34.088152"], ["updated_at", "2021-10-27 17:44:34.088152"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]]
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
[1m[36mApplicationPet Create (1.0ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 9], ["application_id", 5], ["created_at", "2021-10-27 17:44:34.128597"], ["updated_at", "2021-10-27 17:44:34.128597"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]]
[1m[36mPet Load (1.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]]
[1m[36mApplicationPet Create (2.1ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 12], ["application_id", 6], ["created_at", "2021-10-27 17:44:34.133096"], ["updated_at", "2021-10-27 17:44:34.133096"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:44:34 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (6.5ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (7.9ms)
Completed 200 OK in 9ms (Views: 1.7ms | ActiveRecord: 6.8ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (3.0ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.9ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:48:16.428798"], ["updated_at", "2021-10-27 17:48:16.428798"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:48:16.431958"], ["updated_at", "2021-10-27 17:48:16.431958"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:48:16.434012"], ["updated_at", "2021-10-27 17:48:16.434012"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:48:16 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.9ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (5.3ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (43.2ms)
Completed 200 OK in 145ms (Views: 117.2ms | ActiveRecord: 23.5ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:48:16.643136"], ["updated_at", "2021-10-27 17:48:16.643136"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:48:16.644530"], ["updated_at", "2021-10-27 17:48:16.644530"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:48:16.645736"], ["updated_at", "2021-10-27 17:48:16.645736"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 22], ["created_at", "2021-10-27 17:48:16.655202"], ["updated_at", "2021-10-27 17:48:16.655202"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 22], ["created_at", "2021-10-27 17:48:16.657697"], ["updated_at", "2021-10-27 17:48:16.657697"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 23], ["created_at", "2021-10-27 17:48:16.658893"], ["updated_at", "2021-10-27 17:48:16.658893"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 24], ["created_at", "2021-10-27 17:48:16.660506"], ["updated_at", "2021-10-27 17:48:16.660506"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.9ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.9ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 17:48:16.669948"], ["updated_at", "2021-10-27 17:48:16.669948"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 17:48:16.671677"], ["updated_at", "2021-10-27 17:48:16.671677"]]
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
[1m[36mApplicationPet Create (1.0ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 13], ["application_id", 7], ["created_at", "2021-10-27 17:48:16.690323"], ["updated_at", "2021-10-27 17:48:16.690323"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 16], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 16], ["application_id", 8], ["created_at", "2021-10-27 17:48:16.693028"], ["updated_at", "2021-10-27 17:48:16.693028"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:48:16 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (2.6ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (4.0ms)
Completed 200 OK in 5ms (Views: 1.6ms | ActiveRecord: 3.0ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (2.0ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.9ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.0ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:48:49.438780"], ["updated_at", "2021-10-27 17:48:49.438780"]]
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:48:49.442023"], ["updated_at", "2021-10-27 17:48:49.442023"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:48:49.443781"], ["updated_at", "2021-10-27 17:48:49.443781"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:48:49 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (1.5ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (5.8ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (49.1ms)
Completed 200 OK in 143ms (Views: 111.8ms | ActiveRecord: 27.4ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (3.1ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:48:49.649018"], ["updated_at", "2021-10-27 17:48:49.649018"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:48:49.653237"], ["updated_at", "2021-10-27 17:48:49.653237"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:48:49.654418"], ["updated_at", "2021-10-27 17:48:49.654418"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 28], ["created_at", "2021-10-27 17:48:49.663936"], ["updated_at", "2021-10-27 17:48:49.663936"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 28], ["created_at", "2021-10-27 17:48:49.666300"], ["updated_at", "2021-10-27 17:48:49.666300"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 29], ["created_at", "2021-10-27 17:48:49.667600"], ["updated_at", "2021-10-27 17:48:49.667600"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 30], ["created_at", "2021-10-27 17:48:49.668995"], ["updated_at", "2021-10-27 17:48:49.668995"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 17:48:49.678130"], ["updated_at", "2021-10-27 17:48:49.678130"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 17:48:49.679474"], ["updated_at", "2021-10-27 17:48:49.679474"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.5ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 17], ["LIMIT", 1]]
[1m[36mApplicationPet Create (1.1ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 17], ["application_id", 9], ["created_at", "2021-10-27 17:48:49.700110"], ["updated_at", "2021-10-27 17:48:49.700110"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 10], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 20], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.7ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 20], ["application_id", 10], ["created_at", "2021-10-27 17:48:49.703430"], ["updated_at", "2021-10-27 17:48:49.703430"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:48:49 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.9ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (3.2ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (5.1ms)
Completed 200 OK in 6ms (Views: 1.7ms | ActiveRecord: 4.0ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.0ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (2.5ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:50:43.118113"], ["updated_at", "2021-10-27 17:50:43.118113"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:50:43.121331"], ["updated_at", "2021-10-27 17:50:43.121331"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:50:43.123195"], ["updated_at", "2021-10-27 17:50:43.123195"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:50:43 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.8ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (4.3ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (41.2ms)
Completed 200 OK in 141ms (Views: 115.2ms | ActiveRecord: 21.3ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:50:43.324860"], ["updated_at", "2021-10-27 17:50:43.324860"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:50:43.326067"], ["updated_at", "2021-10-27 17:50:43.326067"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:50:43.327077"], ["updated_at", "2021-10-27 17:50:43.327077"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 34], ["created_at", "2021-10-27 17:50:43.335802"], ["updated_at", "2021-10-27 17:50:43.335802"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 34], ["created_at", "2021-10-27 17:50:43.337249"], ["updated_at", "2021-10-27 17:50:43.337249"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 35], ["created_at", "2021-10-27 17:50:43.338710"], ["updated_at", "2021-10-27 17:50:43.338710"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 36], ["created_at", "2021-10-27 17:50:43.339921"], ["updated_at", "2021-10-27 17:50:43.339921"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.7ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 17:50:43.348623"], ["updated_at", "2021-10-27 17:50:43.348623"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.7ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 17:50:43.350133"], ["updated_at", "2021-10-27 17:50:43.350133"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 21], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.8ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 21], ["application_id", 11], ["created_at", "2021-10-27 17:50:43.367739"], ["updated_at", "2021-10-27 17:50:43.367739"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 24], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 24], ["application_id", 12], ["created_at", "2021-10-27 17:50:43.370204"], ["updated_at", "2021-10-27 17:50:43.370204"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:50:43 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (3.0ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (4.1ms)
Completed 200 OK in 5ms (Views: 1.5ms | ActiveRecord: 3.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:59:28.748822"], ["updated_at", "2021-10-27 17:59:28.748822"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:59:28.750946"], ["updated_at", "2021-10-27 17:59:28.750946"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:59:28.751933"], ["updated_at", "2021-10-27 17:59:28.751933"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:59:28 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.8ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (4.5ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (31.8ms)
Completed 200 OK in 130ms (Views: 105.6ms | ActiveRecord: 20.5ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:59:28.944937"], ["updated_at", "2021-10-27 17:59:28.944937"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:59:28.946171"], ["updated_at", "2021-10-27 17:59:28.946171"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:59:28.947157"], ["updated_at", "2021-10-27 17:59:28.947157"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 40], ["created_at", "2021-10-27 17:59:28.956138"], ["updated_at", "2021-10-27 17:59:28.956138"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 40], ["created_at", "2021-10-27 17:59:28.957840"], ["updated_at", "2021-10-27 17:59:28.957840"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 41], ["created_at", "2021-10-27 17:59:28.959302"], ["updated_at", "2021-10-27 17:59:28.959302"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 42], ["created_at", "2021-10-27 17:59:28.960340"], ["updated_at", "2021-10-27 17:59:28.960340"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.7ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 17:59:28.969517"], ["updated_at", "2021-10-27 17:59:28.969517"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 17:59:28.970989"], ["updated_at", "2021-10-27 17:59:28.970989"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 25], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.8ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 25], ["application_id", 13], ["created_at", "2021-10-27 17:59:29.007412"], ["updated_at", "2021-10-27 17:59:29.007412"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 14], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 28], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.7ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 28], ["application_id", 14], ["created_at", "2021-10-27 17:59:29.010110"], ["updated_at", "2021-10-27 17:59:29.010110"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:59:29 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (2.7ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (3.9ms)
Completed 200 OK in 5ms (Views: 1.5ms | ActiveRecord: 3.0ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:59:41.446416"], ["updated_at", "2021-10-27 17:59:41.446416"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:59:41.448593"], ["updated_at", "2021-10-27 17:59:41.448593"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:59:41.449549"], ["updated_at", "2021-10-27 17:59:41.449549"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:59:41 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.8ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (4.5ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (33.2ms)
Completed 200 OK in 124ms (Views: 99.0ms | ActiveRecord: 21.2ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:59:41.634798"], ["updated_at", "2021-10-27 17:59:41.634798"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:59:41.635886"], ["updated_at", "2021-10-27 17:59:41.635886"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:59:41.636618"], ["updated_at", "2021-10-27 17:59:41.636618"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 46], ["created_at", "2021-10-27 17:59:41.647269"], ["updated_at", "2021-10-27 17:59:41.647269"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 46], ["created_at", "2021-10-27 17:59:41.649585"], ["updated_at", "2021-10-27 17:59:41.649585"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 47], ["created_at", "2021-10-27 17:59:41.650777"], ["updated_at", "2021-10-27 17:59:41.650777"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 48], ["created_at", "2021-10-27 17:59:41.651860"], ["updated_at", "2021-10-27 17:59:41.651860"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 17:59:41.659968"], ["updated_at", "2021-10-27 17:59:41.659968"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 17:59:41.661340"], ["updated_at", "2021-10-27 17:59:41.661340"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 15], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 29], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.9ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 29], ["application_id", 15], ["created_at", "2021-10-27 17:59:41.696700"], ["updated_at", "2021-10-27 17:59:41.696700"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 16], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 32], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 32], ["application_id", 16], ["created_at", "2021-10-27 17:59:41.699106"], ["updated_at", "2021-10-27 17:59:41.699106"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:59:41 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.6ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (2.4ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (3.9ms)
Completed 200 OK in 5ms (Views: 1.5ms | ActiveRecord: 3.0ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:59:50.936839"], ["updated_at", "2021-10-27 17:59:50.936839"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:59:50.940422"], ["updated_at", "2021-10-27 17:59:50.940422"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:59:50.942181"], ["updated_at", "2021-10-27 17:59:50.942181"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:59:50 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.7ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (5.5ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (47.3ms)
Completed 200 OK in 135ms (Views: 108.8ms | ActiveRecord: 22.0ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 17:59:51.135444"], ["updated_at", "2021-10-27 17:59:51.135444"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 17:59:51.136510"], ["updated_at", "2021-10-27 17:59:51.136510"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 17:59:51.137406"], ["updated_at", "2021-10-27 17:59:51.137406"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 52], ["created_at", "2021-10-27 17:59:51.146562"], ["updated_at", "2021-10-27 17:59:51.146562"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 52], ["created_at", "2021-10-27 17:59:51.148250"], ["updated_at", "2021-10-27 17:59:51.148250"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 53], ["created_at", "2021-10-27 17:59:51.149542"], ["updated_at", "2021-10-27 17:59:51.149542"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 54], ["created_at", "2021-10-27 17:59:51.150713"], ["updated_at", "2021-10-27 17:59:51.150713"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 17:59:51.159387"], ["updated_at", "2021-10-27 17:59:51.159387"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 17:59:51.160809"], ["updated_at", "2021-10-27 17:59:51.160809"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.5ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 17], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 33], ["LIMIT", 1]]
[1m[36mApplicationPet Create (1.0ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 33], ["application_id", 17], ["created_at", "2021-10-27 17:59:51.178777"], ["updated_at", "2021-10-27 17:59:51.178777"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 18], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 36], ["application_id", 18], ["created_at", "2021-10-27 17:59:51.181631"], ["updated_at", "2021-10-27 17:59:51.181631"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 11:59:51 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (2.1ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (3.6ms)
Completed 200 OK in 4ms (Views: 1.6ms | ActiveRecord: 2.6ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (2.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:02:58.161266"], ["updated_at", "2021-10-27 18:02:58.161266"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:02:58.165359"], ["updated_at", "2021-10-27 18:02:58.165359"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:02:58.167300"], ["updated_at", "2021-10-27 18:02:58.167300"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 12:02:58 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (1.2ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (4.7ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (43.8ms)
Completed 200 OK in 141ms (Views: 115.4ms | ActiveRecord: 22.1ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:02:58.366842"], ["updated_at", "2021-10-27 18:02:58.366842"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:02:58.367868"], ["updated_at", "2021-10-27 18:02:58.367868"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:02:58.368854"], ["updated_at", "2021-10-27 18:02:58.368854"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (5.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 58], ["created_at", "2021-10-27 18:02:58.377945"], ["updated_at", "2021-10-27 18:02:58.377945"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 58], ["created_at", "2021-10-27 18:02:58.384072"], ["updated_at", "2021-10-27 18:02:58.384072"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 59], ["created_at", "2021-10-27 18:02:58.385701"], ["updated_at", "2021-10-27 18:02:58.385701"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 60], ["created_at", "2021-10-27 18:02:58.386837"], ["updated_at", "2021-10-27 18:02:58.386837"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (1.0ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 18:02:58.395929"], ["updated_at", "2021-10-27 18:02:58.395929"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 18:02:58.397699"], ["updated_at", "2021-10-27 18:02:58.397699"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 19], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 37], ["LIMIT", 1]]
[1m[36mApplicationPet Create (2.7ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 37], ["application_id", 19], ["created_at", "2021-10-27 18:02:58.414628"], ["updated_at", "2021-10-27 18:02:58.414628"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 20], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 40], ["application_id", 20], ["created_at", "2021-10-27 18:02:58.418923"], ["updated_at", "2021-10-27 18:02:58.418923"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 12:02:58 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (3.2ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (4.4ms)
Completed 200 OK in 5ms (Views: 1.6ms | ActiveRecord: 3.4ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (12.8ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.3ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (3.0ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:04:50.145605"], ["updated_at", "2021-10-27 18:04:50.145605"]]
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.9ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:04:50.152371"], ["updated_at", "2021-10-27 18:04:50.152371"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:04:50.154966"], ["updated_at", "2021-10-27 18:04:50.154966"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 12:04:50 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.9ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (1.9ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (29.6ms)
Completed 200 OK in 130ms (Views: 108.9ms | ActiveRecord: 17.2ms)
[1m[35m (0.5ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:04:50.353853"], ["updated_at", "2021-10-27 18:04:50.353853"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:04:50.354912"], ["updated_at", "2021-10-27 18:04:50.354912"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:04:50.355684"], ["updated_at", "2021-10-27 18:04:50.355684"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 64], ["created_at", "2021-10-27 18:04:50.365636"], ["updated_at", "2021-10-27 18:04:50.365636"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 64], ["created_at", "2021-10-27 18:04:50.367328"], ["updated_at", "2021-10-27 18:04:50.367328"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 65], ["created_at", "2021-10-27 18:04:50.368419"], ["updated_at", "2021-10-27 18:04:50.368419"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 66], ["created_at", "2021-10-27 18:04:50.369969"], ["updated_at", "2021-10-27 18:04:50.369969"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 18:04:50.378396"], ["updated_at", "2021-10-27 18:04:50.378396"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 18:04:50.379623"], ["updated_at", "2021-10-27 18:04:50.379623"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 21], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
[1m[36mApplicationPet Create (1.0ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 41], ["application_id", 21], ["created_at", "2021-10-27 18:04:50.417032"], ["updated_at", "2021-10-27 18:04:50.417032"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.7ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 22], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.7ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 44], ["application_id", 22], ["created_at", "2021-10-27 18:04:50.420421"], ["updated_at", "2021-10-27 18:04:50.420421"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 12:04:50 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (2.6ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (3.8ms)
Completed 200 OK in 5ms (Views: 1.7ms | ActiveRecord: 2.9ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:08:59.649882"], ["updated_at", "2021-10-27 18:08:59.649882"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:08:59.652889"], ["updated_at", "2021-10-27 18:08:59.652889"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:08:59.654468"], ["updated_at", "2021-10-27 18:08:59.654468"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 12:08:59 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.7ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (4.9ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (40.8ms)
Completed 200 OK in 139ms (Views: 113.5ms | ActiveRecord: 21.2ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:08:59.858487"], ["updated_at", "2021-10-27 18:08:59.858487"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:08:59.859570"], ["updated_at", "2021-10-27 18:08:59.859570"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:08:59.860351"], ["updated_at", "2021-10-27 18:08:59.860351"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (5.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 70], ["created_at", "2021-10-27 18:08:59.869518"], ["updated_at", "2021-10-27 18:08:59.869518"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 70], ["created_at", "2021-10-27 18:08:59.876282"], ["updated_at", "2021-10-27 18:08:59.876282"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 71], ["created_at", "2021-10-27 18:08:59.877441"], ["updated_at", "2021-10-27 18:08:59.877441"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 72], ["created_at", "2021-10-27 18:08:59.878625"], ["updated_at", "2021-10-27 18:08:59.878625"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.7ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 18:08:59.887230"], ["updated_at", "2021-10-27 18:08:59.887230"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 18:08:59.888758"], ["updated_at", "2021-10-27 18:08:59.888758"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 23], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
[1m[36mApplicationPet Create (3.2ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 45], ["application_id", 23], ["created_at", "2021-10-27 18:08:59.905659"], ["updated_at", "2021-10-27 18:08:59.905659"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 24], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 48], ["application_id", 24], ["created_at", "2021-10-27 18:08:59.910735"], ["updated_at", "2021-10-27 18:08:59.910735"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 12:08:59 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (2.1ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (3.5ms)
Completed 200 OK in 4ms (Views: 1.6ms | ActiveRecord: 2.4ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (2.0ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:09:22.400117"], ["updated_at", "2021-10-27 18:09:22.400117"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:09:22.402351"], ["updated_at", "2021-10-27 18:09:22.402351"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:09:22.403971"], ["updated_at", "2021-10-27 18:09:22.403971"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 12:09:22 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.8ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (5.1ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (47.3ms)
Completed 200 OK in 137ms (Views: 111.6ms | ActiveRecord: 21.3ms)
[1m[35m (0.5ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:09:22.601053"], ["updated_at", "2021-10-27 18:09:22.601053"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:09:22.602277"], ["updated_at", "2021-10-27 18:09:22.602277"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:09:22.603292"], ["updated_at", "2021-10-27 18:09:22.603292"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 76], ["created_at", "2021-10-27 18:09:22.612925"], ["updated_at", "2021-10-27 18:09:22.612925"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 76], ["created_at", "2021-10-27 18:09:22.614641"], ["updated_at", "2021-10-27 18:09:22.614641"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 77], ["created_at", "2021-10-27 18:09:22.616420"], ["updated_at", "2021-10-27 18:09:22.616420"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 78], ["created_at", "2021-10-27 18:09:22.617748"], ["updated_at", "2021-10-27 18:09:22.617748"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 18:09:22.626011"], ["updated_at", "2021-10-27 18:09:22.626011"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 18:09:22.627362"], ["updated_at", "2021-10-27 18:09:22.627362"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 25], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.7ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 49], ["application_id", 25], ["created_at", "2021-10-27 18:09:22.643953"], ["updated_at", "2021-10-27 18:09:22.643953"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 26], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 52], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 52], ["application_id", 26], ["created_at", "2021-10-27 18:09:22.646268"], ["updated_at", "2021-10-27 18:09:22.646268"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 12:09:22 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (3.0ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (4.3ms)
Completed 200 OK in 5ms (Views: 1.5ms | ActiveRecord: 3.4ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:10:09.029098"], ["updated_at", "2021-10-27 18:10:09.029098"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:10:09.032366"], ["updated_at", "2021-10-27 18:10:09.032366"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:10:09.034018"], ["updated_at", "2021-10-27 18:10:09.034018"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 12:10:09 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.9ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (4.3ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (42.6ms)
Completed 200 OK in 138ms (Views: 113.7ms | ActiveRecord: 20.7ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:10:09.231271"], ["updated_at", "2021-10-27 18:10:09.231271"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:10:09.232659"], ["updated_at", "2021-10-27 18:10:09.232659"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:10:09.233702"], ["updated_at", "2021-10-27 18:10:09.233702"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.1ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 82], ["created_at", "2021-10-27 18:10:09.242481"], ["updated_at", "2021-10-27 18:10:09.242481"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (2.1ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 82], ["created_at", "2021-10-27 18:10:09.244554"], ["updated_at", "2021-10-27 18:10:09.244554"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 83], ["created_at", "2021-10-27 18:10:09.247697"], ["updated_at", "2021-10-27 18:10:09.247697"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 84], ["created_at", "2021-10-27 18:10:09.248957"], ["updated_at", "2021-10-27 18:10:09.248957"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.8ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 18:10:09.256993"], ["updated_at", "2021-10-27 18:10:09.256993"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 18:10:09.258802"], ["updated_at", "2021-10-27 18:10:09.258802"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 27], ["LIMIT", 1]]
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 53], ["LIMIT", 1]]
[1m[36mApplicationPet Create (1.3ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 53], ["application_id", 27], ["created_at", "2021-10-27 18:10:09.276243"], ["updated_at", "2021-10-27 18:10:09.276243"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 28], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
[1m[36mApplicationPet Create (1.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 56], ["application_id", 28], ["created_at", "2021-10-27 18:10:09.279260"], ["updated_at", "2021-10-27 18:10:09.279260"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 12:10:09 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (3.0ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (4.3ms)
Completed 200 OK in 5ms (Views: 1.6ms | ActiveRecord: 3.3ms)
[1m[35m (1.7ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:10:22.832995"], ["updated_at", "2021-10-27 18:10:22.832995"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:10:22.834976"], ["updated_at", "2021-10-27 18:10:22.834976"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:10:22.835948"], ["updated_at", "2021-10-27 18:10:22.835948"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 12:10:22 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (1.1ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (4.8ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (33.6ms)
Completed 200 OK in 128ms (Views: 102.6ms | ActiveRecord: 22.1ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:10:23.022229"], ["updated_at", "2021-10-27 18:10:23.022229"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:10:23.023338"], ["updated_at", "2021-10-27 18:10:23.023338"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:10:23.024095"], ["updated_at", "2021-10-27 18:10:23.024095"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.1ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 88], ["created_at", "2021-10-27 18:10:23.033007"], ["updated_at", "2021-10-27 18:10:23.033007"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 88], ["created_at", "2021-10-27 18:10:23.034952"], ["updated_at", "2021-10-27 18:10:23.034952"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 89], ["created_at", "2021-10-27 18:10:23.036011"], ["updated_at", "2021-10-27 18:10:23.036011"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 90], ["created_at", "2021-10-27 18:10:23.037409"], ["updated_at", "2021-10-27 18:10:23.037409"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 18:10:23.046430"], ["updated_at", "2021-10-27 18:10:23.046430"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 18:10:23.047563"], ["updated_at", "2021-10-27 18:10:23.047563"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 29], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
[1m[36mApplicationPet Create (1.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 57], ["application_id", 29], ["created_at", "2021-10-27 18:10:23.084212"], ["updated_at", "2021-10-27 18:10:23.084212"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 30], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 60], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 60], ["application_id", 30], ["created_at", "2021-10-27 18:10:23.087064"], ["updated_at", "2021-10-27 18:10:23.087064"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 12:10:23 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[36mPet Load (3.1ms)[0m [1m[34mSELECT DISTINCT shelters.name FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m Rendered admin/shelters/index.html.erb within layouts/application (4.4ms)
Completed 200 OK in 5ms (Views: 1.5ms | ActiveRecord: 3.5ms)
[1m[35m (2.8ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.0ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.430764"], ["updated_at", "2021-10-27 18:19:50.430764"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.434001"], ["updated_at", "2021-10-27 18:19:50.434001"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.435984"], ["updated_at", "2021-10-27 18:19:50.435984"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (2.0ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 91], ["created_at", "2021-10-27 18:19:50.473960"], ["updated_at", "2021-10-27 18:19:50.473960"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 91], ["created_at", "2021-10-27 18:19:50.477057"], ["updated_at", "2021-10-27 18:19:50.477057"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 93], ["created_at", "2021-10-27 18:19:50.478344"], ["updated_at", "2021-10-27 18:19:50.478344"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 91], ["created_at", "2021-10-27 18:19:50.479828"], ["updated_at", "2021-10-27 18:19:50.479828"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.521145"], ["updated_at", "2021-10-27 18:19:50.521145"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.522502"], ["updated_at", "2021-10-27 18:19:50.522502"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.523486"], ["updated_at", "2021-10-27 18:19:50.523486"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 94], ["created_at", "2021-10-27 18:19:50.524609"], ["updated_at", "2021-10-27 18:19:50.524609"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 94], ["created_at", "2021-10-27 18:19:50.525759"], ["updated_at", "2021-10-27 18:19:50.525759"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 96], ["created_at", "2021-10-27 18:19:50.527222"], ["updated_at", "2021-10-27 18:19:50.527222"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 94], ["created_at", "2021-10-27 18:19:50.528177"], ["updated_at", "2021-10-27 18:19:50.528177"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.534532"], ["updated_at", "2021-10-27 18:19:50.534532"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.535570"], ["updated_at", "2021-10-27 18:19:50.535570"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.536357"], ["updated_at", "2021-10-27 18:19:50.536357"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 97], ["created_at", "2021-10-27 18:19:50.537366"], ["updated_at", "2021-10-27 18:19:50.537366"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 97], ["created_at", "2021-10-27 18:19:50.538638"], ["updated_at", "2021-10-27 18:19:50.538638"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 99], ["created_at", "2021-10-27 18:19:50.539834"], ["updated_at", "2021-10-27 18:19:50.539834"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 97], ["created_at", "2021-10-27 18:19:50.540749"], ["updated_at", "2021-10-27 18:19:50.540749"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.545402"], ["updated_at", "2021-10-27 18:19:50.545402"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.546567"], ["updated_at", "2021-10-27 18:19:50.546567"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.547596"], ["updated_at", "2021-10-27 18:19:50.547596"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 100], ["created_at", "2021-10-27 18:19:50.548722"], ["updated_at", "2021-10-27 18:19:50.548722"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 100], ["created_at", "2021-10-27 18:19:50.550526"], ["updated_at", "2021-10-27 18:19:50.550526"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 102], ["created_at", "2021-10-27 18:19:50.551684"], ["updated_at", "2021-10-27 18:19:50.551684"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 100], ["created_at", "2021-10-27 18:19:50.552662"], ["updated_at", "2021-10-27 18:19:50.552662"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.556338"], ["updated_at", "2021-10-27 18:19:50.556338"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.557246"], ["updated_at", "2021-10-27 18:19:50.557246"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.558336"], ["updated_at", "2021-10-27 18:19:50.558336"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 103], ["created_at", "2021-10-27 18:19:50.559558"], ["updated_at", "2021-10-27 18:19:50.559558"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 103], ["created_at", "2021-10-27 18:19:50.560560"], ["updated_at", "2021-10-27 18:19:50.560560"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 105], ["created_at", "2021-10-27 18:19:50.561820"], ["updated_at", "2021-10-27 18:19:50.561820"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 103], ["created_at", "2021-10-27 18:19:50.563455"], ["updated_at", "2021-10-27 18:19:50.563455"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.566348"], ["updated_at", "2021-10-27 18:19:50.566348"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.567235"], ["updated_at", "2021-10-27 18:19:50.567235"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.568063"], ["updated_at", "2021-10-27 18:19:50.568063"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 106], ["created_at", "2021-10-27 18:19:50.569147"], ["updated_at", "2021-10-27 18:19:50.569147"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 106], ["created_at", "2021-10-27 18:19:50.570490"], ["updated_at", "2021-10-27 18:19:50.570490"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 108], ["created_at", "2021-10-27 18:19:50.571618"], ["updated_at", "2021-10-27 18:19:50.571618"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 106], ["created_at", "2021-10-27 18:19:50.572634"], ["updated_at", "2021-10-27 18:19:50.572634"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (7.6ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.583506"], ["updated_at", "2021-10-27 18:19:50.583506"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.584535"], ["updated_at", "2021-10-27 18:19:50.584535"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.585642"], ["updated_at", "2021-10-27 18:19:50.585642"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 109], ["created_at", "2021-10-27 18:19:50.587024"], ["updated_at", "2021-10-27 18:19:50.587024"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 109], ["created_at", "2021-10-27 18:19:50.588141"], ["updated_at", "2021-10-27 18:19:50.588141"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 111], ["created_at", "2021-10-27 18:19:50.589346"], ["updated_at", "2021-10-27 18:19:50.589346"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 109], ["created_at", "2021-10-27 18:19:50.590771"], ["updated_at", "2021-10-27 18:19:50.590771"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (2.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.594998"], ["updated_at", "2021-10-27 18:19:50.594998"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.595957"], ["updated_at", "2021-10-27 18:19:50.595957"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.596903"], ["updated_at", "2021-10-27 18:19:50.596903"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 112], ["created_at", "2021-10-27 18:19:50.598294"], ["updated_at", "2021-10-27 18:19:50.598294"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 112], ["created_at", "2021-10-27 18:19:50.599628"], ["updated_at", "2021-10-27 18:19:50.599628"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 114], ["created_at", "2021-10-27 18:19:50.600837"], ["updated_at", "2021-10-27 18:19:50.600837"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 112], ["created_at", "2021-10-27 18:19:50.601994"], ["updated_at", "2021-10-27 18:19:50.601994"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (2.3ms)[0m [1m[34mSELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.608661"], ["updated_at", "2021-10-27 18:19:50.608661"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.609879"], ["updated_at", "2021-10-27 18:19:50.609879"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.610947"], ["updated_at", "2021-10-27 18:19:50.610947"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 115], ["created_at", "2021-10-27 18:19:50.612079"], ["updated_at", "2021-10-27 18:19:50.612079"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 115], ["created_at", "2021-10-27 18:19:50.613448"], ["updated_at", "2021-10-27 18:19:50.613448"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 117], ["created_at", "2021-10-27 18:19:50.615194"], ["updated_at", "2021-10-27 18:19:50.615194"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 115], ["created_at", "2021-10-27 18:19:50.616638"], ["updated_at", "2021-10-27 18:19:50.616638"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.618963"], ["updated_at", "2021-10-27 18:19:50.618963"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.619929"], ["updated_at", "2021-10-27 18:19:50.619929"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.620864"], ["updated_at", "2021-10-27 18:19:50.620864"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 118], ["created_at", "2021-10-27 18:19:50.622241"], ["updated_at", "2021-10-27 18:19:50.622241"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 118], ["created_at", "2021-10-27 18:19:50.623371"], ["updated_at", "2021-10-27 18:19:50.623371"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 120], ["created_at", "2021-10-27 18:19:50.624590"], ["updated_at", "2021-10-27 18:19:50.624590"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 118], ["created_at", "2021-10-27 18:19:50.625979"], ["updated_at", "2021-10-27 18:19:50.625979"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (1.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 18:19:50.644267"], ["updated_at", "2021-10-27 18:19:50.644267"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 18:19:50.646454"], ["updated_at", "2021-10-27 18:19:50.646454"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.649778"], ["updated_at", "2021-10-27 18:19:50.649778"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.650721"], ["updated_at", "2021-10-27 18:19:50.650721"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.651541"], ["updated_at", "2021-10-27 18:19:50.651541"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 121], ["created_at", "2021-10-27 18:19:50.652686"], ["updated_at", "2021-10-27 18:19:50.652686"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 121], ["created_at", "2021-10-27 18:19:50.654247"], ["updated_at", "2021-10-27 18:19:50.654247"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 123], ["created_at", "2021-10-27 18:19:50.655424"], ["updated_at", "2021-10-27 18:19:50.655424"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 121], ["created_at", "2021-10-27 18:19:50.656588"], ["updated_at", "2021-10-27 18:19:50.656588"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 121], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.660069"], ["updated_at", "2021-10-27 18:19:50.660069"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.661256"], ["updated_at", "2021-10-27 18:19:50.661256"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.662373"], ["updated_at", "2021-10-27 18:19:50.662373"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 124], ["created_at", "2021-10-27 18:19:50.663458"], ["updated_at", "2021-10-27 18:19:50.663458"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 124], ["created_at", "2021-10-27 18:19:50.664618"], ["updated_at", "2021-10-27 18:19:50.664618"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 126], ["created_at", "2021-10-27 18:19:50.666063"], ["updated_at", "2021-10-27 18:19:50.666063"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 124], ["created_at", "2021-10-27 18:19:50.667160"], ["updated_at", "2021-10-27 18:19:50.667160"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC[0m [["shelter_id", 124], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.669872"], ["updated_at", "2021-10-27 18:19:50.669872"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.670819"], ["updated_at", "2021-10-27 18:19:50.670819"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.671724"], ["updated_at", "2021-10-27 18:19:50.671724"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 127], ["created_at", "2021-10-27 18:19:50.673155"], ["updated_at", "2021-10-27 18:19:50.673155"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 127], ["created_at", "2021-10-27 18:19:50.674555"], ["updated_at", "2021-10-27 18:19:50.674555"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 129], ["created_at", "2021-10-27 18:19:50.675727"], ["updated_at", "2021-10-27 18:19:50.675727"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 127], ["created_at", "2021-10-27 18:19:50.677126"], ["updated_at", "2021-10-27 18:19:50.677126"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)[0m [["shelter_id", 127], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:19:50.679690"], ["updated_at", "2021-10-27 18:19:50.679690"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:19:50.680824"], ["updated_at", "2021-10-27 18:19:50.680824"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:19:50.681923"], ["updated_at", "2021-10-27 18:19:50.681923"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 130], ["created_at", "2021-10-27 18:19:50.683050"], ["updated_at", "2021-10-27 18:19:50.683050"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 130], ["created_at", "2021-10-27 18:19:50.684184"], ["updated_at", "2021-10-27 18:19:50.684184"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 132], ["created_at", "2021-10-27 18:19:50.685649"], ["updated_at", "2021-10-27 18:19:50.685649"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 130], ["created_at", "2021-10-27 18:19:50.686767"], ["updated_at", "2021-10-27 18:19:50.686767"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 130]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.176091"], ["updated_at", "2021-10-27 18:20:08.176091"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.179155"], ["updated_at", "2021-10-27 18:20:08.179155"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.180936"], ["updated_at", "2021-10-27 18:20:08.180936"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 133], ["created_at", "2021-10-27 18:20:08.222218"], ["updated_at", "2021-10-27 18:20:08.222218"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 133], ["created_at", "2021-10-27 18:20:08.225001"], ["updated_at", "2021-10-27 18:20:08.225001"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 135], ["created_at", "2021-10-27 18:20:08.226301"], ["updated_at", "2021-10-27 18:20:08.226301"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 133], ["created_at", "2021-10-27 18:20:08.227398"], ["updated_at", "2021-10-27 18:20:08.227398"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.267133"], ["updated_at", "2021-10-27 18:20:08.267133"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.268414"], ["updated_at", "2021-10-27 18:20:08.268414"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.269248"], ["updated_at", "2021-10-27 18:20:08.269248"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 136], ["created_at", "2021-10-27 18:20:08.270331"], ["updated_at", "2021-10-27 18:20:08.270331"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 136], ["created_at", "2021-10-27 18:20:08.271609"], ["updated_at", "2021-10-27 18:20:08.271609"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 138], ["created_at", "2021-10-27 18:20:08.273013"], ["updated_at", "2021-10-27 18:20:08.273013"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 136], ["created_at", "2021-10-27 18:20:08.273939"], ["updated_at", "2021-10-27 18:20:08.273939"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.280195"], ["updated_at", "2021-10-27 18:20:08.280195"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.281058"], ["updated_at", "2021-10-27 18:20:08.281058"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.281805"], ["updated_at", "2021-10-27 18:20:08.281805"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 139], ["created_at", "2021-10-27 18:20:08.282782"], ["updated_at", "2021-10-27 18:20:08.282782"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 139], ["created_at", "2021-10-27 18:20:08.284026"], ["updated_at", "2021-10-27 18:20:08.284026"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 141], ["created_at", "2021-10-27 18:20:08.285148"], ["updated_at", "2021-10-27 18:20:08.285148"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 139], ["created_at", "2021-10-27 18:20:08.286059"], ["updated_at", "2021-10-27 18:20:08.286059"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.290615"], ["updated_at", "2021-10-27 18:20:08.290615"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.291642"], ["updated_at", "2021-10-27 18:20:08.291642"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.292623"], ["updated_at", "2021-10-27 18:20:08.292623"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 142], ["created_at", "2021-10-27 18:20:08.293697"], ["updated_at", "2021-10-27 18:20:08.293697"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 142], ["created_at", "2021-10-27 18:20:08.294771"], ["updated_at", "2021-10-27 18:20:08.294771"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 144], ["created_at", "2021-10-27 18:20:08.296101"], ["updated_at", "2021-10-27 18:20:08.296101"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 142], ["created_at", "2021-10-27 18:20:08.297108"], ["updated_at", "2021-10-27 18:20:08.297108"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.301471"], ["updated_at", "2021-10-27 18:20:08.301471"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.302523"], ["updated_at", "2021-10-27 18:20:08.302523"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.303323"], ["updated_at", "2021-10-27 18:20:08.303323"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 145], ["created_at", "2021-10-27 18:20:08.304449"], ["updated_at", "2021-10-27 18:20:08.304449"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 145], ["created_at", "2021-10-27 18:20:08.305468"], ["updated_at", "2021-10-27 18:20:08.305468"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 147], ["created_at", "2021-10-27 18:20:08.306544"], ["updated_at", "2021-10-27 18:20:08.306544"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 145], ["created_at", "2021-10-27 18:20:08.307773"], ["updated_at", "2021-10-27 18:20:08.307773"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.310570"], ["updated_at", "2021-10-27 18:20:08.310570"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.311686"], ["updated_at", "2021-10-27 18:20:08.311686"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.312785"], ["updated_at", "2021-10-27 18:20:08.312785"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 148], ["created_at", "2021-10-27 18:20:08.313975"], ["updated_at", "2021-10-27 18:20:08.313975"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 148], ["created_at", "2021-10-27 18:20:08.315013"], ["updated_at", "2021-10-27 18:20:08.315013"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 150], ["created_at", "2021-10-27 18:20:08.316072"], ["updated_at", "2021-10-27 18:20:08.316072"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 148], ["created_at", "2021-10-27 18:20:08.317055"], ["updated_at", "2021-10-27 18:20:08.317055"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.7ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.320613"], ["updated_at", "2021-10-27 18:20:08.320613"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.321460"], ["updated_at", "2021-10-27 18:20:08.321460"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.322307"], ["updated_at", "2021-10-27 18:20:08.322307"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 151], ["created_at", "2021-10-27 18:20:08.323643"], ["updated_at", "2021-10-27 18:20:08.323643"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 151], ["created_at", "2021-10-27 18:20:08.324688"], ["updated_at", "2021-10-27 18:20:08.324688"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 153], ["created_at", "2021-10-27 18:20:08.326028"], ["updated_at", "2021-10-27 18:20:08.326028"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 151], ["created_at", "2021-10-27 18:20:08.327398"], ["updated_at", "2021-10-27 18:20:08.327398"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.9ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.330207"], ["updated_at", "2021-10-27 18:20:08.330207"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.331310"], ["updated_at", "2021-10-27 18:20:08.331310"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.332273"], ["updated_at", "2021-10-27 18:20:08.332273"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 154], ["created_at", "2021-10-27 18:20:08.333358"], ["updated_at", "2021-10-27 18:20:08.333358"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 154], ["created_at", "2021-10-27 18:20:08.334685"], ["updated_at", "2021-10-27 18:20:08.334685"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 156], ["created_at", "2021-10-27 18:20:08.336137"], ["updated_at", "2021-10-27 18:20:08.336137"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 154], ["created_at", "2021-10-27 18:20:08.337257"], ["updated_at", "2021-10-27 18:20:08.337257"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (1.7ms)[0m [1m[34mSELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.343053"], ["updated_at", "2021-10-27 18:20:08.343053"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.344113"], ["updated_at", "2021-10-27 18:20:08.344113"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.344934"], ["updated_at", "2021-10-27 18:20:08.344934"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 157], ["created_at", "2021-10-27 18:20:08.346021"], ["updated_at", "2021-10-27 18:20:08.346021"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 157], ["created_at", "2021-10-27 18:20:08.347415"], ["updated_at", "2021-10-27 18:20:08.347415"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 159], ["created_at", "2021-10-27 18:20:08.348813"], ["updated_at", "2021-10-27 18:20:08.348813"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 157], ["created_at", "2021-10-27 18:20:08.349962"], ["updated_at", "2021-10-27 18:20:08.349962"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.352126"], ["updated_at", "2021-10-27 18:20:08.352126"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.353052"], ["updated_at", "2021-10-27 18:20:08.353052"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.353904"], ["updated_at", "2021-10-27 18:20:08.353904"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 160], ["created_at", "2021-10-27 18:20:08.355204"], ["updated_at", "2021-10-27 18:20:08.355204"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 160], ["created_at", "2021-10-27 18:20:08.356323"], ["updated_at", "2021-10-27 18:20:08.356323"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 162], ["created_at", "2021-10-27 18:20:08.357465"], ["updated_at", "2021-10-27 18:20:08.357465"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 160], ["created_at", "2021-10-27 18:20:08.358839"], ["updated_at", "2021-10-27 18:20:08.358839"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.8ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 18:20:08.377081"], ["updated_at", "2021-10-27 18:20:08.377081"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 18:20:08.378866"], ["updated_at", "2021-10-27 18:20:08.378866"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.6ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 33], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 154], ["LIMIT", 1]]
[1m[36mApplicationPet Create (1.3ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 154], ["application_id", 33], ["created_at", "2021-10-27 18:20:08.396278"], ["updated_at", "2021-10-27 18:20:08.396278"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 34], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 155], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 155], ["application_id", 34], ["created_at", "2021-10-27 18:20:08.399359"], ["updated_at", "2021-10-27 18:20:08.399359"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (6.9ms)[0m [1m[34mSELECT DISTINCT shelters.* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" INNER JOIN "application_pets" "application_pets_pets_join" ON "application_pets_pets_join"."pet_id" = "pets"."id" INNER JOIN "applications" ON "applications"."id" = "application_pets_pets_join"."application_id" INNER JOIN shelters on pets.shelter_id = shelters.id WHERE (applications.application_status = 'Pending')[0m
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.419308"], ["updated_at", "2021-10-27 18:20:08.419308"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.420346"], ["updated_at", "2021-10-27 18:20:08.420346"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.421319"], ["updated_at", "2021-10-27 18:20:08.421319"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 163], ["created_at", "2021-10-27 18:20:08.422603"], ["updated_at", "2021-10-27 18:20:08.422603"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 163], ["created_at", "2021-10-27 18:20:08.423749"], ["updated_at", "2021-10-27 18:20:08.423749"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 165], ["created_at", "2021-10-27 18:20:08.424918"], ["updated_at", "2021-10-27 18:20:08.424918"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 163], ["created_at", "2021-10-27 18:20:08.426138"], ["updated_at", "2021-10-27 18:20:08.426138"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 163], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.428495"], ["updated_at", "2021-10-27 18:20:08.428495"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.429570"], ["updated_at", "2021-10-27 18:20:08.429570"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.430624"], ["updated_at", "2021-10-27 18:20:08.430624"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 166], ["created_at", "2021-10-27 18:20:08.431772"], ["updated_at", "2021-10-27 18:20:08.431772"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 166], ["created_at", "2021-10-27 18:20:08.432966"], ["updated_at", "2021-10-27 18:20:08.432966"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 168], ["created_at", "2021-10-27 18:20:08.434273"], ["updated_at", "2021-10-27 18:20:08.434273"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 166], ["created_at", "2021-10-27 18:20:08.435374"], ["updated_at", "2021-10-27 18:20:08.435374"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC[0m [["shelter_id", 166], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.438180"], ["updated_at", "2021-10-27 18:20:08.438180"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.439102"], ["updated_at", "2021-10-27 18:20:08.439102"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.439966"], ["updated_at", "2021-10-27 18:20:08.439966"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 169], ["created_at", "2021-10-27 18:20:08.441320"], ["updated_at", "2021-10-27 18:20:08.441320"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 169], ["created_at", "2021-10-27 18:20:08.442663"], ["updated_at", "2021-10-27 18:20:08.442663"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 171], ["created_at", "2021-10-27 18:20:08.443841"], ["updated_at", "2021-10-27 18:20:08.443841"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 169], ["created_at", "2021-10-27 18:20:08.445211"], ["updated_at", "2021-10-27 18:20:08.445211"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)[0m [["shelter_id", 169], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 18:20:08.447947"], ["updated_at", "2021-10-27 18:20:08.447947"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 18:20:08.449376"], ["updated_at", "2021-10-27 18:20:08.449376"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 18:20:08.450467"], ["updated_at", "2021-10-27 18:20:08.450467"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 172], ["created_at", "2021-10-27 18:20:08.451644"], ["updated_at", "2021-10-27 18:20:08.451644"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 172], ["created_at", "2021-10-27 18:20:08.452986"], ["updated_at", "2021-10-27 18:20:08.452986"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 174], ["created_at", "2021-10-27 18:20:08.454470"], ["updated_at", "2021-10-27 18:20:08.454470"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 172], ["created_at", "2021-10-27 18:20:08.455571"], ["updated_at", "2021-10-27 18:20:08.455571"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 172]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.338297"], ["updated_at", "2021-10-27 20:25:45.338297"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.340537"], ["updated_at", "2021-10-27 20:25:45.340537"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.341489"], ["updated_at", "2021-10-27 20:25:45.341489"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (5.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 175], ["created_at", "2021-10-27 20:25:45.373610"], ["updated_at", "2021-10-27 20:25:45.373610"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 175], ["created_at", "2021-10-27 20:25:45.379932"], ["updated_at", "2021-10-27 20:25:45.379932"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 177], ["created_at", "2021-10-27 20:25:45.381443"], ["updated_at", "2021-10-27 20:25:45.381443"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 175], ["created_at", "2021-10-27 20:25:45.382732"], ["updated_at", "2021-10-27 20:25:45.382732"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.424526"], ["updated_at", "2021-10-27 20:25:45.424526"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.425542"], ["updated_at", "2021-10-27 20:25:45.425542"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.426370"], ["updated_at", "2021-10-27 20:25:45.426370"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 178], ["created_at", "2021-10-27 20:25:45.427644"], ["updated_at", "2021-10-27 20:25:45.427644"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 178], ["created_at", "2021-10-27 20:25:45.428812"], ["updated_at", "2021-10-27 20:25:45.428812"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 180], ["created_at", "2021-10-27 20:25:45.429893"], ["updated_at", "2021-10-27 20:25:45.429893"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 178], ["created_at", "2021-10-27 20:25:45.431325"], ["updated_at", "2021-10-27 20:25:45.431325"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.437897"], ["updated_at", "2021-10-27 20:25:45.437897"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.439021"], ["updated_at", "2021-10-27 20:25:45.439021"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.439984"], ["updated_at", "2021-10-27 20:25:45.439984"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 181], ["created_at", "2021-10-27 20:25:45.440966"], ["updated_at", "2021-10-27 20:25:45.440966"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 181], ["created_at", "2021-10-27 20:25:45.441957"], ["updated_at", "2021-10-27 20:25:45.441957"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 183], ["created_at", "2021-10-27 20:25:45.443273"], ["updated_at", "2021-10-27 20:25:45.443273"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 181], ["created_at", "2021-10-27 20:25:45.444559"], ["updated_at", "2021-10-27 20:25:45.444559"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.449110"], ["updated_at", "2021-10-27 20:25:45.449110"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.449993"], ["updated_at", "2021-10-27 20:25:45.449993"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.451045"], ["updated_at", "2021-10-27 20:25:45.451045"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 184], ["created_at", "2021-10-27 20:25:45.452223"], ["updated_at", "2021-10-27 20:25:45.452223"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 184], ["created_at", "2021-10-27 20:25:45.453245"], ["updated_at", "2021-10-27 20:25:45.453245"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 186], ["created_at", "2021-10-27 20:25:45.454388"], ["updated_at", "2021-10-27 20:25:45.454388"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 184], ["created_at", "2021-10-27 20:25:45.455730"], ["updated_at", "2021-10-27 20:25:45.455730"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.459413"], ["updated_at", "2021-10-27 20:25:45.459413"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.460245"], ["updated_at", "2021-10-27 20:25:45.460245"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.461054"], ["updated_at", "2021-10-27 20:25:45.461054"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 187], ["created_at", "2021-10-27 20:25:45.462541"], ["updated_at", "2021-10-27 20:25:45.462541"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 187], ["created_at", "2021-10-27 20:25:45.464204"], ["updated_at", "2021-10-27 20:25:45.464204"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 189], ["created_at", "2021-10-27 20:25:45.465322"], ["updated_at", "2021-10-27 20:25:45.465322"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 187], ["created_at", "2021-10-27 20:25:45.466625"], ["updated_at", "2021-10-27 20:25:45.466625"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.469950"], ["updated_at", "2021-10-27 20:25:45.469950"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.471121"], ["updated_at", "2021-10-27 20:25:45.471121"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.471998"], ["updated_at", "2021-10-27 20:25:45.471998"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 190], ["created_at", "2021-10-27 20:25:45.473043"], ["updated_at", "2021-10-27 20:25:45.473043"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 190], ["created_at", "2021-10-27 20:25:45.474242"], ["updated_at", "2021-10-27 20:25:45.474242"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 192], ["created_at", "2021-10-27 20:25:45.475575"], ["updated_at", "2021-10-27 20:25:45.475575"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 190], ["created_at", "2021-10-27 20:25:45.476554"], ["updated_at", "2021-10-27 20:25:45.476554"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.479959"], ["updated_at", "2021-10-27 20:25:45.479959"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.480813"], ["updated_at", "2021-10-27 20:25:45.480813"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.481664"], ["updated_at", "2021-10-27 20:25:45.481664"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 193], ["created_at", "2021-10-27 20:25:45.482930"], ["updated_at", "2021-10-27 20:25:45.482930"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 193], ["created_at", "2021-10-27 20:25:45.484297"], ["updated_at", "2021-10-27 20:25:45.484297"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 195], ["created_at", "2021-10-27 20:25:45.485419"], ["updated_at", "2021-10-27 20:25:45.485419"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 193], ["created_at", "2021-10-27 20:25:45.486825"], ["updated_at", "2021-10-27 20:25:45.486825"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.9ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.489683"], ["updated_at", "2021-10-27 20:25:45.489683"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.490767"], ["updated_at", "2021-10-27 20:25:45.490767"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.491702"], ["updated_at", "2021-10-27 20:25:45.491702"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 196], ["created_at", "2021-10-27 20:25:45.492738"], ["updated_at", "2021-10-27 20:25:45.492738"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 196], ["created_at", "2021-10-27 20:25:45.493874"], ["updated_at", "2021-10-27 20:25:45.493874"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 198], ["created_at", "2021-10-27 20:25:45.495429"], ["updated_at", "2021-10-27 20:25:45.495429"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 196], ["created_at", "2021-10-27 20:25:45.496515"], ["updated_at", "2021-10-27 20:25:45.496515"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (1.6ms)[0m [1m[34mSELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.502139"], ["updated_at", "2021-10-27 20:25:45.502139"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.503287"], ["updated_at", "2021-10-27 20:25:45.503287"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.504147"], ["updated_at", "2021-10-27 20:25:45.504147"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 199], ["created_at", "2021-10-27 20:25:45.505274"], ["updated_at", "2021-10-27 20:25:45.505274"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 199], ["created_at", "2021-10-27 20:25:45.506686"], ["updated_at", "2021-10-27 20:25:45.506686"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 201], ["created_at", "2021-10-27 20:25:45.508322"], ["updated_at", "2021-10-27 20:25:45.508322"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 199], ["created_at", "2021-10-27 20:25:45.509563"], ["updated_at", "2021-10-27 20:25:45.509563"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.511712"], ["updated_at", "2021-10-27 20:25:45.511712"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.512605"], ["updated_at", "2021-10-27 20:25:45.512605"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.513544"], ["updated_at", "2021-10-27 20:25:45.513544"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 202], ["created_at", "2021-10-27 20:25:45.514832"], ["updated_at", "2021-10-27 20:25:45.514832"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 202], ["created_at", "2021-10-27 20:25:45.515919"], ["updated_at", "2021-10-27 20:25:45.515919"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 204], ["created_at", "2021-10-27 20:25:45.517061"], ["updated_at", "2021-10-27 20:25:45.517061"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 202], ["created_at", "2021-10-27 20:25:45.518413"], ["updated_at", "2021-10-27 20:25:45.518413"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.9ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 20:25:45.538472"], ["updated_at", "2021-10-27 20:25:45.538472"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 20:25:45.540315"], ["updated_at", "2021-10-27 20:25:45.540315"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.7ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 35], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 210], ["LIMIT", 1]]
[1m[36mApplicationPet Create (1.0ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 210], ["application_id", 35], ["created_at", "2021-10-27 20:25:45.558970"], ["updated_at", "2021-10-27 20:25:45.558970"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 211], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 211], ["application_id", 36], ["created_at", "2021-10-27 20:25:45.561762"], ["updated_at", "2021-10-27 20:25:45.561762"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (6.2ms)[0m [1m[34mSELECT "shelter_id" FROM "applications" INNER JOIN "application_pets" ON "application_pets"."application_id" = "applications"."id" INNER JOIN "pets" ON "pets"."id" = "application_pets"."pet_id" WHERE "applications"."status" = $1[0m [["status", "Pending"]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.571927"], ["updated_at", "2021-10-27 20:25:45.571927"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.573072"], ["updated_at", "2021-10-27 20:25:45.573072"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.574073"], ["updated_at", "2021-10-27 20:25:45.574073"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 205], ["created_at", "2021-10-27 20:25:45.575314"], ["updated_at", "2021-10-27 20:25:45.575314"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 205], ["created_at", "2021-10-27 20:25:45.576494"], ["updated_at", "2021-10-27 20:25:45.576494"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 207], ["created_at", "2021-10-27 20:25:45.577984"], ["updated_at", "2021-10-27 20:25:45.577984"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 205], ["created_at", "2021-10-27 20:25:45.579102"], ["updated_at", "2021-10-27 20:25:45.579102"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 205], ["adoptable", true]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.581942"], ["updated_at", "2021-10-27 20:25:45.581942"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.582949"], ["updated_at", "2021-10-27 20:25:45.582949"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.583864"], ["updated_at", "2021-10-27 20:25:45.583864"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 208], ["created_at", "2021-10-27 20:25:45.585223"], ["updated_at", "2021-10-27 20:25:45.585223"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 208], ["created_at", "2021-10-27 20:25:45.586653"], ["updated_at", "2021-10-27 20:25:45.586653"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 210], ["created_at", "2021-10-27 20:25:45.587906"], ["updated_at", "2021-10-27 20:25:45.587906"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 208], ["created_at", "2021-10-27 20:25:45.589349"], ["updated_at", "2021-10-27 20:25:45.589349"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC[0m [["shelter_id", 208], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.592136"], ["updated_at", "2021-10-27 20:25:45.592136"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.593356"], ["updated_at", "2021-10-27 20:25:45.593356"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.594451"], ["updated_at", "2021-10-27 20:25:45.594451"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 211], ["created_at", "2021-10-27 20:25:45.595632"], ["updated_at", "2021-10-27 20:25:45.595632"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 211], ["created_at", "2021-10-27 20:25:45.596895"], ["updated_at", "2021-10-27 20:25:45.596895"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 213], ["created_at", "2021-10-27 20:25:45.598281"], ["updated_at", "2021-10-27 20:25:45.598281"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 211], ["created_at", "2021-10-27 20:25:45.599406"], ["updated_at", "2021-10-27 20:25:45.599406"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)[0m [["shelter_id", 211], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:25:45.602315"], ["updated_at", "2021-10-27 20:25:45.602315"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:25:45.603365"], ["updated_at", "2021-10-27 20:25:45.603365"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:25:45.604296"], ["updated_at", "2021-10-27 20:25:45.604296"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 214], ["created_at", "2021-10-27 20:25:45.605694"], ["updated_at", "2021-10-27 20:25:45.605694"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 214], ["created_at", "2021-10-27 20:25:45.606873"], ["updated_at", "2021-10-27 20:25:45.606873"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 216], ["created_at", "2021-10-27 20:25:45.608052"], ["updated_at", "2021-10-27 20:25:45.608052"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 214], ["created_at", "2021-10-27 20:25:45.609434"], ["updated_at", "2021-10-27 20:25:45.609434"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 214]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.308248"], ["updated_at", "2021-10-27 20:27:45.308248"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.311102"], ["updated_at", "2021-10-27 20:27:45.311102"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.312414"], ["updated_at", "2021-10-27 20:27:45.312414"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 217], ["created_at", "2021-10-27 20:27:45.352611"], ["updated_at", "2021-10-27 20:27:45.352611"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 217], ["created_at", "2021-10-27 20:27:45.359945"], ["updated_at", "2021-10-27 20:27:45.359945"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 219], ["created_at", "2021-10-27 20:27:45.361530"], ["updated_at", "2021-10-27 20:27:45.361530"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 217], ["created_at", "2021-10-27 20:27:45.362691"], ["updated_at", "2021-10-27 20:27:45.362691"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.402358"], ["updated_at", "2021-10-27 20:27:45.402358"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.403683"], ["updated_at", "2021-10-27 20:27:45.403683"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.404637"], ["updated_at", "2021-10-27 20:27:45.404637"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 220], ["created_at", "2021-10-27 20:27:45.405726"], ["updated_at", "2021-10-27 20:27:45.405726"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 220], ["created_at", "2021-10-27 20:27:45.407110"], ["updated_at", "2021-10-27 20:27:45.407110"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 222], ["created_at", "2021-10-27 20:27:45.408641"], ["updated_at", "2021-10-27 20:27:45.408641"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 220], ["created_at", "2021-10-27 20:27:45.409608"], ["updated_at", "2021-10-27 20:27:45.409608"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.415979"], ["updated_at", "2021-10-27 20:27:45.415979"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.416830"], ["updated_at", "2021-10-27 20:27:45.416830"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.417647"], ["updated_at", "2021-10-27 20:27:45.417647"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 223], ["created_at", "2021-10-27 20:27:45.418845"], ["updated_at", "2021-10-27 20:27:45.418845"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 223], ["created_at", "2021-10-27 20:27:45.420643"], ["updated_at", "2021-10-27 20:27:45.420643"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 225], ["created_at", "2021-10-27 20:27:45.421912"], ["updated_at", "2021-10-27 20:27:45.421912"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 223], ["created_at", "2021-10-27 20:27:45.422941"], ["updated_at", "2021-10-27 20:27:45.422941"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.427747"], ["updated_at", "2021-10-27 20:27:45.427747"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.428630"], ["updated_at", "2021-10-27 20:27:45.428630"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.429428"], ["updated_at", "2021-10-27 20:27:45.429428"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 226], ["created_at", "2021-10-27 20:27:45.430494"], ["updated_at", "2021-10-27 20:27:45.430494"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 226], ["created_at", "2021-10-27 20:27:45.431771"], ["updated_at", "2021-10-27 20:27:45.431771"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 228], ["created_at", "2021-10-27 20:27:45.432870"], ["updated_at", "2021-10-27 20:27:45.432870"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 226], ["created_at", "2021-10-27 20:27:45.433889"], ["updated_at", "2021-10-27 20:27:45.433889"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.437987"], ["updated_at", "2021-10-27 20:27:45.437987"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.438936"], ["updated_at", "2021-10-27 20:27:45.438936"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.439706"], ["updated_at", "2021-10-27 20:27:45.439706"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 229], ["created_at", "2021-10-27 20:27:45.440806"], ["updated_at", "2021-10-27 20:27:45.440806"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 229], ["created_at", "2021-10-27 20:27:45.441844"], ["updated_at", "2021-10-27 20:27:45.441844"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 231], ["created_at", "2021-10-27 20:27:45.443193"], ["updated_at", "2021-10-27 20:27:45.443193"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 229], ["created_at", "2021-10-27 20:27:45.444338"], ["updated_at", "2021-10-27 20:27:45.444338"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.446999"], ["updated_at", "2021-10-27 20:27:45.446999"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.447995"], ["updated_at", "2021-10-27 20:27:45.447995"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.448785"], ["updated_at", "2021-10-27 20:27:45.448785"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 232], ["created_at", "2021-10-27 20:27:45.449909"], ["updated_at", "2021-10-27 20:27:45.449909"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 232], ["created_at", "2021-10-27 20:27:45.451390"], ["updated_at", "2021-10-27 20:27:45.451390"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 234], ["created_at", "2021-10-27 20:27:45.452596"], ["updated_at", "2021-10-27 20:27:45.452596"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 232], ["created_at", "2021-10-27 20:27:45.453585"], ["updated_at", "2021-10-27 20:27:45.453585"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.6ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.457231"], ["updated_at", "2021-10-27 20:27:45.457231"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.458256"], ["updated_at", "2021-10-27 20:27:45.458256"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.459255"], ["updated_at", "2021-10-27 20:27:45.459255"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 235], ["created_at", "2021-10-27 20:27:45.460353"], ["updated_at", "2021-10-27 20:27:45.460353"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 235], ["created_at", "2021-10-27 20:27:45.461414"], ["updated_at", "2021-10-27 20:27:45.461414"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 237], ["created_at", "2021-10-27 20:27:45.462742"], ["updated_at", "2021-10-27 20:27:45.462742"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 235], ["created_at", "2021-10-27 20:27:45.464049"], ["updated_at", "2021-10-27 20:27:45.464049"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (1.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.467174"], ["updated_at", "2021-10-27 20:27:45.467174"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.468183"], ["updated_at", "2021-10-27 20:27:45.468183"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.469000"], ["updated_at", "2021-10-27 20:27:45.469000"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 238], ["created_at", "2021-10-27 20:27:45.470027"], ["updated_at", "2021-10-27 20:27:45.470027"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 238], ["created_at", "2021-10-27 20:27:45.470996"], ["updated_at", "2021-10-27 20:27:45.470996"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 240], ["created_at", "2021-10-27 20:27:45.472076"], ["updated_at", "2021-10-27 20:27:45.472076"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 238], ["created_at", "2021-10-27 20:27:45.473068"], ["updated_at", "2021-10-27 20:27:45.473068"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (2.3ms)[0m [1m[34mSELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.479551"], ["updated_at", "2021-10-27 20:27:45.479551"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.480531"], ["updated_at", "2021-10-27 20:27:45.480531"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.481338"], ["updated_at", "2021-10-27 20:27:45.481338"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 241], ["created_at", "2021-10-27 20:27:45.482652"], ["updated_at", "2021-10-27 20:27:45.482652"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 241], ["created_at", "2021-10-27 20:27:45.483929"], ["updated_at", "2021-10-27 20:27:45.483929"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 243], ["created_at", "2021-10-27 20:27:45.485005"], ["updated_at", "2021-10-27 20:27:45.485005"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 241], ["created_at", "2021-10-27 20:27:45.486285"], ["updated_at", "2021-10-27 20:27:45.486285"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.488534"], ["updated_at", "2021-10-27 20:27:45.488534"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.489398"], ["updated_at", "2021-10-27 20:27:45.489398"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.490444"], ["updated_at", "2021-10-27 20:27:45.490444"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 244], ["created_at", "2021-10-27 20:27:45.491723"], ["updated_at", "2021-10-27 20:27:45.491723"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 244], ["created_at", "2021-10-27 20:27:45.492793"], ["updated_at", "2021-10-27 20:27:45.492793"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 246], ["created_at", "2021-10-27 20:27:45.494122"], ["updated_at", "2021-10-27 20:27:45.494122"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 244], ["created_at", "2021-10-27 20:27:45.495546"], ["updated_at", "2021-10-27 20:27:45.495546"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (1.1ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 20:27:45.513653"], ["updated_at", "2021-10-27 20:27:45.513653"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 20:27:45.515885"], ["updated_at", "2021-10-27 20:27:45.515885"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.5ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 37], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 266], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.9ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 266], ["application_id", 37], ["created_at", "2021-10-27 20:27:45.535025"], ["updated_at", "2021-10-27 20:27:45.535025"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 267], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 267], ["application_id", 38], ["created_at", "2021-10-27 20:27:45.537827"], ["updated_at", "2021-10-27 20:27:45.537827"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (1.5ms)[0m [1m[34mSELECT "shelter_id" FROM "applications" INNER JOIN "application_pets" ON "application_pets"."application_id" = "applications"."id" INNER JOIN "pets" ON "pets"."id" = "application_pets"."pet_id" WHERE "applications"."application_status" = $1[0m [["application_status", "Pending"]]
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" IN ($1, $2)[0m [["id", 244], ["id", 246]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.552761"], ["updated_at", "2021-10-27 20:27:45.552761"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.553950"], ["updated_at", "2021-10-27 20:27:45.553950"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.554932"], ["updated_at", "2021-10-27 20:27:45.554932"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 247], ["created_at", "2021-10-27 20:27:45.556109"], ["updated_at", "2021-10-27 20:27:45.556109"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 247], ["created_at", "2021-10-27 20:27:45.557275"], ["updated_at", "2021-10-27 20:27:45.557275"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 249], ["created_at", "2021-10-27 20:27:45.558540"], ["updated_at", "2021-10-27 20:27:45.558540"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 247], ["created_at", "2021-10-27 20:27:45.559558"], ["updated_at", "2021-10-27 20:27:45.559558"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 247], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.562099"], ["updated_at", "2021-10-27 20:27:45.562099"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.563175"], ["updated_at", "2021-10-27 20:27:45.563175"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.564045"], ["updated_at", "2021-10-27 20:27:45.564045"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 250], ["created_at", "2021-10-27 20:27:45.565157"], ["updated_at", "2021-10-27 20:27:45.565157"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 250], ["created_at", "2021-10-27 20:27:45.566375"], ["updated_at", "2021-10-27 20:27:45.566375"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 252], ["created_at", "2021-10-27 20:27:45.567496"], ["updated_at", "2021-10-27 20:27:45.567496"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 250], ["created_at", "2021-10-27 20:27:45.568608"], ["updated_at", "2021-10-27 20:27:45.568608"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC[0m [["shelter_id", 250], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.571263"], ["updated_at", "2021-10-27 20:27:45.571263"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.572181"], ["updated_at", "2021-10-27 20:27:45.572181"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.573096"], ["updated_at", "2021-10-27 20:27:45.573096"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 253], ["created_at", "2021-10-27 20:27:45.574303"], ["updated_at", "2021-10-27 20:27:45.574303"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 253], ["created_at", "2021-10-27 20:27:45.575381"], ["updated_at", "2021-10-27 20:27:45.575381"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 255], ["created_at", "2021-10-27 20:27:45.576508"], ["updated_at", "2021-10-27 20:27:45.576508"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 253], ["created_at", "2021-10-27 20:27:45.577703"], ["updated_at", "2021-10-27 20:27:45.577703"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)[0m [["shelter_id", 253], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:27:45.580061"], ["updated_at", "2021-10-27 20:27:45.580061"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:27:45.581174"], ["updated_at", "2021-10-27 20:27:45.581174"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:27:45.582421"], ["updated_at", "2021-10-27 20:27:45.582421"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 256], ["created_at", "2021-10-27 20:27:45.583546"], ["updated_at", "2021-10-27 20:27:45.583546"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 256], ["created_at", "2021-10-27 20:27:45.584739"], ["updated_at", "2021-10-27 20:27:45.584739"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 258], ["created_at", "2021-10-27 20:27:45.586131"], ["updated_at", "2021-10-27 20:27:45.586131"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 256], ["created_at", "2021-10-27 20:27:45.587235"], ["updated_at", "2021-10-27 20:27:45.587235"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 256]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.0ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.9ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.9ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.608565"], ["updated_at", "2021-10-27 20:28:53.608565"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.611613"], ["updated_at", "2021-10-27 20:28:53.611613"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.613462"], ["updated_at", "2021-10-27 20:28:53.613462"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 259], ["created_at", "2021-10-27 20:28:53.650975"], ["updated_at", "2021-10-27 20:28:53.650975"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 259], ["created_at", "2021-10-27 20:28:53.653718"], ["updated_at", "2021-10-27 20:28:53.653718"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 261], ["created_at", "2021-10-27 20:28:53.654985"], ["updated_at", "2021-10-27 20:28:53.654985"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 259], ["created_at", "2021-10-27 20:28:53.656091"], ["updated_at", "2021-10-27 20:28:53.656091"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.694049"], ["updated_at", "2021-10-27 20:28:53.694049"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.695079"], ["updated_at", "2021-10-27 20:28:53.695079"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.695943"], ["updated_at", "2021-10-27 20:28:53.695943"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 262], ["created_at", "2021-10-27 20:28:53.697293"], ["updated_at", "2021-10-27 20:28:53.697293"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 262], ["created_at", "2021-10-27 20:28:53.698424"], ["updated_at", "2021-10-27 20:28:53.698424"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 264], ["created_at", "2021-10-27 20:28:53.699533"], ["updated_at", "2021-10-27 20:28:53.699533"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 262], ["created_at", "2021-10-27 20:28:53.700811"], ["updated_at", "2021-10-27 20:28:53.700811"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.709381"], ["updated_at", "2021-10-27 20:28:53.709381"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.710251"], ["updated_at", "2021-10-27 20:28:53.710251"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.710990"], ["updated_at", "2021-10-27 20:28:53.710990"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 265], ["created_at", "2021-10-27 20:28:53.712111"], ["updated_at", "2021-10-27 20:28:53.712111"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 265], ["created_at", "2021-10-27 20:28:53.713403"], ["updated_at", "2021-10-27 20:28:53.713403"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 267], ["created_at", "2021-10-27 20:28:53.714436"], ["updated_at", "2021-10-27 20:28:53.714436"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 265], ["created_at", "2021-10-27 20:28:53.715384"], ["updated_at", "2021-10-27 20:28:53.715384"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.720145"], ["updated_at", "2021-10-27 20:28:53.720145"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.721254"], ["updated_at", "2021-10-27 20:28:53.721254"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.722099"], ["updated_at", "2021-10-27 20:28:53.722099"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 268], ["created_at", "2021-10-27 20:28:53.723532"], ["updated_at", "2021-10-27 20:28:53.723532"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 268], ["created_at", "2021-10-27 20:28:53.724602"], ["updated_at", "2021-10-27 20:28:53.724602"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 270], ["created_at", "2021-10-27 20:28:53.725672"], ["updated_at", "2021-10-27 20:28:53.725672"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 268], ["created_at", "2021-10-27 20:28:53.726672"], ["updated_at", "2021-10-27 20:28:53.726672"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.730503"], ["updated_at", "2021-10-27 20:28:53.730503"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.731502"], ["updated_at", "2021-10-27 20:28:53.731502"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.732773"], ["updated_at", "2021-10-27 20:28:53.732773"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 271], ["created_at", "2021-10-27 20:28:53.733834"], ["updated_at", "2021-10-27 20:28:53.733834"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 271], ["created_at", "2021-10-27 20:28:53.734866"], ["updated_at", "2021-10-27 20:28:53.734866"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 273], ["created_at", "2021-10-27 20:28:53.736213"], ["updated_at", "2021-10-27 20:28:53.736213"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 271], ["created_at", "2021-10-27 20:28:53.737578"], ["updated_at", "2021-10-27 20:28:53.737578"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.740210"], ["updated_at", "2021-10-27 20:28:53.740210"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.741046"], ["updated_at", "2021-10-27 20:28:53.741046"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.741844"], ["updated_at", "2021-10-27 20:28:53.741844"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 274], ["created_at", "2021-10-27 20:28:53.742892"], ["updated_at", "2021-10-27 20:28:53.742892"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 274], ["created_at", "2021-10-27 20:28:53.744275"], ["updated_at", "2021-10-27 20:28:53.744275"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 276], ["created_at", "2021-10-27 20:28:53.745599"], ["updated_at", "2021-10-27 20:28:53.745599"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 274], ["created_at", "2021-10-27 20:28:53.746687"], ["updated_at", "2021-10-27 20:28:53.746687"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.6ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.750262"], ["updated_at", "2021-10-27 20:28:53.750262"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.751152"], ["updated_at", "2021-10-27 20:28:53.751152"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.752144"], ["updated_at", "2021-10-27 20:28:53.752144"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 277], ["created_at", "2021-10-27 20:28:53.753322"], ["updated_at", "2021-10-27 20:28:53.753322"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 277], ["created_at", "2021-10-27 20:28:53.754298"], ["updated_at", "2021-10-27 20:28:53.754298"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 279], ["created_at", "2021-10-27 20:28:53.755365"], ["updated_at", "2021-10-27 20:28:53.755365"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 277], ["created_at", "2021-10-27 20:28:53.756621"], ["updated_at", "2021-10-27 20:28:53.756621"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.8ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.759135"], ["updated_at", "2021-10-27 20:28:53.759135"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.760171"], ["updated_at", "2021-10-27 20:28:53.760171"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.761130"], ["updated_at", "2021-10-27 20:28:53.761130"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 280], ["created_at", "2021-10-27 20:28:53.762187"], ["updated_at", "2021-10-27 20:28:53.762187"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 280], ["created_at", "2021-10-27 20:28:53.763276"], ["updated_at", "2021-10-27 20:28:53.763276"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 282], ["created_at", "2021-10-27 20:28:53.764638"], ["updated_at", "2021-10-27 20:28:53.764638"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 280], ["created_at", "2021-10-27 20:28:53.765689"], ["updated_at", "2021-10-27 20:28:53.765689"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (1.7ms)[0m [1m[34mSELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.771103"], ["updated_at", "2021-10-27 20:28:53.771103"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.772574"], ["updated_at", "2021-10-27 20:28:53.772574"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.773510"], ["updated_at", "2021-10-27 20:28:53.773510"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 283], ["created_at", "2021-10-27 20:28:53.774616"], ["updated_at", "2021-10-27 20:28:53.774616"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 283], ["created_at", "2021-10-27 20:28:53.775996"], ["updated_at", "2021-10-27 20:28:53.775996"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 285], ["created_at", "2021-10-27 20:28:53.777375"], ["updated_at", "2021-10-27 20:28:53.777375"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 283], ["created_at", "2021-10-27 20:28:53.778443"], ["updated_at", "2021-10-27 20:28:53.778443"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.6ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.781153"], ["updated_at", "2021-10-27 20:28:53.781153"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.782031"], ["updated_at", "2021-10-27 20:28:53.782031"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.782944"], ["updated_at", "2021-10-27 20:28:53.782944"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 286], ["created_at", "2021-10-27 20:28:53.784248"], ["updated_at", "2021-10-27 20:28:53.784248"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 286], ["created_at", "2021-10-27 20:28:53.785523"], ["updated_at", "2021-10-27 20:28:53.785523"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 288], ["created_at", "2021-10-27 20:28:53.786762"], ["updated_at", "2021-10-27 20:28:53.786762"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 286], ["created_at", "2021-10-27 20:28:53.788029"], ["updated_at", "2021-10-27 20:28:53.788029"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.8ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 20:28:53.806773"], ["updated_at", "2021-10-27 20:28:53.806773"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 20:28:53.808529"], ["updated_at", "2021-10-27 20:28:53.808529"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.5ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 39], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 322], ["LIMIT", 1]]
[1m[36mApplicationPet Create (1.1ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 322], ["application_id", 39], ["created_at", "2021-10-27 20:28:53.827623"], ["updated_at", "2021-10-27 20:28:53.827623"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 323], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 323], ["application_id", 40], ["created_at", "2021-10-27 20:28:53.830308"], ["updated_at", "2021-10-27 20:28:53.830308"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (1.2ms)[0m [1m[34mSELECT "shelter_id" FROM "applications" INNER JOIN "application_pets" ON "application_pets"."application_id" = "applications"."id" INNER JOIN "pets" ON "pets"."id" = "application_pets"."pet_id" WHERE "applications"."application_status" = $1[0m [["application_status", "Pending"]]
[1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" IN ($1, $2)[0m [["id", 286], ["id", 288]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.836383"], ["updated_at", "2021-10-27 20:28:53.836383"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.837363"], ["updated_at", "2021-10-27 20:28:53.837363"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.838280"], ["updated_at", "2021-10-27 20:28:53.838280"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 289], ["created_at", "2021-10-27 20:28:53.839651"], ["updated_at", "2021-10-27 20:28:53.839651"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 289], ["created_at", "2021-10-27 20:28:53.840936"], ["updated_at", "2021-10-27 20:28:53.840936"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 291], ["created_at", "2021-10-27 20:28:53.842080"], ["updated_at", "2021-10-27 20:28:53.842080"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 289], ["created_at", "2021-10-27 20:28:53.843312"], ["updated_at", "2021-10-27 20:28:53.843312"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 289], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.845909"], ["updated_at", "2021-10-27 20:28:53.845909"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.846985"], ["updated_at", "2021-10-27 20:28:53.846985"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.847997"], ["updated_at", "2021-10-27 20:28:53.847997"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 292], ["created_at", "2021-10-27 20:28:53.849155"], ["updated_at", "2021-10-27 20:28:53.849155"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 292], ["created_at", "2021-10-27 20:28:53.850333"], ["updated_at", "2021-10-27 20:28:53.850333"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 294], ["created_at", "2021-10-27 20:28:53.851729"], ["updated_at", "2021-10-27 20:28:53.851729"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 292], ["created_at", "2021-10-27 20:28:53.852859"], ["updated_at", "2021-10-27 20:28:53.852859"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC[0m [["shelter_id", 292], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.855764"], ["updated_at", "2021-10-27 20:28:53.855764"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.856693"], ["updated_at", "2021-10-27 20:28:53.856693"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.857585"], ["updated_at", "2021-10-27 20:28:53.857585"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 295], ["created_at", "2021-10-27 20:28:53.858943"], ["updated_at", "2021-10-27 20:28:53.858943"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 295], ["created_at", "2021-10-27 20:28:53.860309"], ["updated_at", "2021-10-27 20:28:53.860309"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 297], ["created_at", "2021-10-27 20:28:53.861486"], ["updated_at", "2021-10-27 20:28:53.861486"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 295], ["created_at", "2021-10-27 20:28:53.862875"], ["updated_at", "2021-10-27 20:28:53.862875"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)[0m [["shelter_id", 295], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 20:28:53.865450"], ["updated_at", "2021-10-27 20:28:53.865450"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 20:28:53.866602"], ["updated_at", "2021-10-27 20:28:53.866602"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 20:28:53.867713"], ["updated_at", "2021-10-27 20:28:53.867713"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 298], ["created_at", "2021-10-27 20:28:53.868842"], ["updated_at", "2021-10-27 20:28:53.868842"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 298], ["created_at", "2021-10-27 20:28:53.869989"], ["updated_at", "2021-10-27 20:28:53.869989"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 300], ["created_at", "2021-10-27 20:28:53.871563"], ["updated_at", "2021-10-27 20:28:53.871563"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 298], ["created_at", "2021-10-27 20:28:53.872870"], ["updated_at", "2021-10-27 20:28:53.872870"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 298]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.8ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 22:08:48.289789"], ["updated_at", "2021-10-27 22:08:48.289789"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 301], ["created_at", "2021-10-27 22:08:48.321234"], ["updated_at", "2021-10-27 22:08:48.321234"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 301], ["created_at", "2021-10-27 22:08:48.323512"], ["updated_at", "2021-10-27 22:08:48.323512"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 301], ["created_at", "2021-10-27 22:08:48.324682"], ["updated_at", "2021-10-27 22:08:48.324682"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 22:08:48.340086"], ["updated_at", "2021-10-27 22:08:48.340086"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.7ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 341], ["application_id", 41], ["created_at", "2021-10-27 22:08:48.357040"], ["updated_at", "2021-10-27 22:08:48.357040"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.2ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 342], ["application_id", 41], ["created_at", "2021-10-27 22:08:48.358840"], ["updated_at", "2021-10-27 22:08:48.358840"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/41” for 127.0.0.1 at 2021-10-27 16:08:48 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"41"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 41)[0m
Rendered applications/show.html.erb within layouts/application (5.3ms)
Completed 200 OK in 105ms (Views: 97.4ms | ActiveRecord: 2.2ms) Started GET “/pets/341” for 127.0.0.1 at 2021-10-27 16:08:48 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"341"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 341], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 301], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.6ms) Started GET “/applications/41” for 127.0.0.1 at 2021-10-27 16:08:48 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"41"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 41)[0m
Rendered applications/show.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.9ms) Started GET “/pets/342” for 127.0.0.1 at 2021-10-27 16:08:48 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"342"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 342], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 301], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.5ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 22:08:48.550044"], ["updated_at", "2021-10-27 22:08:48.550044"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 302], ["created_at", "2021-10-27 22:08:48.551545"], ["updated_at", "2021-10-27 22:08:48.551545"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.0ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 302], ["created_at", "2021-10-27 22:08:48.552688"], ["updated_at", "2021-10-27 22:08:48.552688"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 302], ["created_at", "2021-10-27 22:08:48.554441"], ["updated_at", "2021-10-27 22:08:48.554441"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 22:08:48.555374"], ["updated_at", "2021-10-27 22:08:48.555374"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/42” for 127.0.0.1 at 2021-10-27 16:08:48 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"42"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 42)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 42)[0m
Rendered applications/show.html.erb within layouts/application (4.4ms)
Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 1.2ms) Started GET “/applications/42?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-27 16:08:48 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"42"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 42)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 42)[0m
[1m[36mPet Load (2.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (4.3ms)
Completed 200 OK in 6ms (Views: 2.0ms | ActiveRecord: 3.0ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 22:08:48.590354"], ["updated_at", "2021-10-27 22:08:48.590354"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 303], ["created_at", "2021-10-27 22:08:48.592773"], ["updated_at", "2021-10-27 22:08:48.592773"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 22:08:48.594853"], ["updated_at", "2021-10-27 22:08:48.594853"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/43” for 127.0.0.1 at 2021-10-27 16:08:48 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"43"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 43)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 43)[0m
Rendered applications/show.html.erb within layouts/application (2.4ms)
Completed 200 OK in 5ms (Views: 2.5ms | ActiveRecord: 1.2ms) Started GET “/applications/43?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-27 16:08:48 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"43"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 43)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 43)[0m
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (2.3ms)
Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 1.4ms) Started POST “/application_pets?app_id=43&pet_id=347” for 127.0.0.1 at 2021-10-27 16:08:48 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"43", "pet_id"=>"347"}
[1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 347], ["LIMIT", 1]]
[1m[36mApplicationPet Create (1.2ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 347], ["application_id", 43], ["created_at", "2021-10-27 22:10:12.463163"], ["updated_at", "2021-10-27 22:10:12.463163"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/43 Completed 302 Found in 83842ms (ActiveRecord: 2.8ms) Started GET “/applications/43” for 127.0.0.1 at 2021-10-27 16:10:12 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"43"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 43)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 43)[0m
Rendered applications/show.html.erb within layouts/application (5.6ms)
Completed 200 OK in 11ms (Views: 6.8ms | ActiveRecord: 1.6ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 22:10:12.500075"], ["updated_at", "2021-10-27 22:10:12.500075"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 304], ["created_at", "2021-10-27 22:10:12.502329"], ["updated_at", "2021-10-27 22:10:12.502329"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 304], ["created_at", "2021-10-27 22:10:12.504407"], ["updated_at", "2021-10-27 22:10:12.504407"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 304], ["created_at", "2021-10-27 22:10:12.506129"], ["updated_at", "2021-10-27 22:10:12.506129"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 22:10:12.507957"], ["updated_at", "2021-10-27 22:10:12.507957"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/44” for 127.0.0.1 at 2021-10-27 16:10:12 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"44"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 44)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 44)[0m
Rendered applications/show.html.erb within layouts/application (2.1ms)
Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 1.2ms) Started GET “/applications/44?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-27 16:10:12 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"44"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 44)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 44)[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')[0m
Rendered applications/show.html.erb within layouts/application (3.0ms)
Completed 200 OK in 5ms (Views: 2.2ms | ActiveRecord: 1.8ms) Started POST “/application_pets?app_id=44&pet_id=350” for 127.0.0.1 at 2021-10-27 16:10:12 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"44", "pet_id"=>"350"}
Completed 500 Internal Server Error in 3226ms (ActiveRecord: 0.0ms)
[1m[35m (2.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:05.461383"], ["updated_at", "2021-10-27 23:38:05.461383"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:05.464162"], ["updated_at", "2021-10-27 23:38:05.464162"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:05.465307"], ["updated_at", "2021-10-27 23:38:05.465307"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (5.3ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[35m (3.4ms)[0m [1m[34mSELECT "shelter_id" FROM "applications" INNER JOIN "application_pets" ON "application_pets"."application_id" = "applications"."id" INNER JOIN "pets" ON "pets"."id" = "application_pets"."pet_id" WHERE "applications"."application_status" = $1[0m [["application_status", "Pending"]] Rendered admin/shelters/index.html.erb within layouts/application (33.5ms)
Completed 200 OK in 128ms (Views: 99.4ms | ActiveRecord: 24.9ms)
[1m[35m (0.5ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:05.645347"], ["updated_at", "2021-10-27 23:38:05.645347"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:05.646608"], ["updated_at", "2021-10-27 23:38:05.646608"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:05.647588"], ["updated_at", "2021-10-27 23:38:05.647588"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 308], ["created_at", "2021-10-27 23:38:05.660830"], ["updated_at", "2021-10-27 23:38:05.660830"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 308], ["created_at", "2021-10-27 23:38:05.662512"], ["updated_at", "2021-10-27 23:38:05.662512"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 309], ["created_at", "2021-10-27 23:38:05.664178"], ["updated_at", "2021-10-27 23:38:05.664178"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 310], ["created_at", "2021-10-27 23:38:05.665692"], ["updated_at", "2021-10-27 23:38:05.665692"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (1.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:05.670818"], ["updated_at", "2021-10-27 23:38:05.670818"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 23:38:05.672745"], ["updated_at", "2021-10-27 23:38:05.672745"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.5ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 351], ["LIMIT", 1]]
[1m[36mApplicationPet Create (1.2ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 351], ["application_id", 45], ["created_at", "2021-10-27 23:38:05.689165"], ["updated_at", "2021-10-27 23:38:05.689165"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 354], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 354], ["application_id", 46], ["created_at", "2021-10-27 23:38:05.692418"], ["updated_at", "2021-10-27 23:38:05.692418"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.6ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[35m (1.4ms)[0m [1m[34mSELECT "shelter_id" FROM "applications" INNER JOIN "application_pets" ON "application_pets"."application_id" = "applications"."id" INNER JOIN "pets" ON "pets"."id" = "application_pets"."pet_id" WHERE "applications"."application_status" = $1[0m [["application_status", "Pending"]] [1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" IN ($1, $2)[0m [["id", 308], ["id", 310]] Rendered admin/shelters/index.html.erb within layouts/application (3.7ms)
Completed 200 OK in 5ms (Views: 1.9ms | ActiveRecord: 2.5ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.8ms)
Completed 200 OK in 7ms (Views: 3.8ms | ActiveRecord: 0.0ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (8.5ms)
Completed 200 OK in 11ms (Views: 9.4ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.0ms)
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (1.7ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (2.6ms)
Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 1.7ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.0ms)
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (1.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (1.7ms)
Completed 200 OK in 8ms (Views: 1.9ms | ActiveRecord: 4.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.0ms)
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.8ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] Rendered veterinarians/index.html.erb within layouts/application (1.6ms)
Completed 200 OK in 7ms (Views: 1.9ms | ActiveRecord: 3.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:38:05.791697"], ["updated_at", "2021-10-27 23:38:05.791697"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 311], ["created_at", "2021-10-27 23:38:05.818204"], ["updated_at", "2021-10-27 23:38:05.818204"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 311], ["created_at", "2021-10-27 23:38:05.819563"], ["updated_at", "2021-10-27 23:38:05.819563"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 311], ["created_at", "2021-10-27 23:38:05.820700"], ["updated_at", "2021-10-27 23:38:05.820700"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:05.821674"], ["updated_at", "2021-10-27 23:38:05.821674"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 355], ["application_id", 47], ["created_at", "2021-10-27 23:38:05.825410"], ["updated_at", "2021-10-27 23:38:05.825410"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 356], ["application_id", 47], ["created_at", "2021-10-27 23:38:05.826921"], ["updated_at", "2021-10-27 23:38:05.826921"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/47” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"47"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 47)[0m
Rendered applications/show.html.erb within layouts/application (2.1ms)
Completed 200 OK in 5ms (Views: 2.3ms | ActiveRecord: 1.4ms) Started GET “/pets/355” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"355"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 355], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 311], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.6ms) Started GET “/applications/47” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"47"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 47)[0m
Rendered applications/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.4ms) Started GET “/pets/356” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"356"}
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 356], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 311], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.6ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:38:05.855822"], ["updated_at", "2021-10-27 23:38:05.855822"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 312], ["created_at", "2021-10-27 23:38:05.857293"], ["updated_at", "2021-10-27 23:38:05.857293"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 312], ["created_at", "2021-10-27 23:38:05.858391"], ["updated_at", "2021-10-27 23:38:05.858391"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 312], ["created_at", "2021-10-27 23:38:05.859450"], ["updated_at", "2021-10-27 23:38:05.859450"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:05.860408"], ["updated_at", "2021-10-27 23:38:05.860408"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/48” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"48"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 48)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 48)[0m
Rendered applications/show.html.erb within layouts/application (1.5ms)
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.8ms) Started GET “/applications/48?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"48"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 48)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 48)[0m
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (3.2ms)
Completed 200 OK in 5ms (Views: 2.4ms | ActiveRecord: 1.7ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:38:05.883875"], ["updated_at", "2021-10-27 23:38:05.883875"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 313], ["created_at", "2021-10-27 23:38:05.885227"], ["updated_at", "2021-10-27 23:38:05.885227"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:05.886113"], ["updated_at", "2021-10-27 23:38:05.886113"]]
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/49” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"49"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 49)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 49)[0m
Rendered applications/show.html.erb within layouts/application (1.8ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 1.3ms) Started GET “/applications/49?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"49"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 49)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 49)[0m
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (2.4ms)
Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 1.7ms) Started POST “/application_pets?app_id=49&pet_id=361” for 127.0.0.1 at 2021-10-27 17:38:05 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"49", "pet_id"=>"361"}
[1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 361], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.7ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 361], ["application_id", 49], ["created_at", "2021-10-27 23:38:19.418474"], ["updated_at", "2021-10-27 23:38:19.418474"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/49 Completed 302 Found in 13515ms (ActiveRecord: 1.9ms) Started GET “/applications/49” for 127.0.0.1 at 2021-10-27 17:38:19 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"49"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 49)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 49)[0m
Rendered applications/show.html.erb within layouts/application (4.8ms)
Completed 200 OK in 8ms (Views: 5.4ms | ActiveRecord: 1.3ms)
[1m[35m (0.6ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:38:19.439883"], ["updated_at", "2021-10-27 23:38:19.439883"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 314], ["created_at", "2021-10-27 23:38:19.442792"], ["updated_at", "2021-10-27 23:38:19.442792"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.1ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 314], ["created_at", "2021-10-27 23:38:19.444819"], ["updated_at", "2021-10-27 23:38:19.444819"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 314], ["created_at", "2021-10-27 23:38:19.447570"], ["updated_at", "2021-10-27 23:38:19.447570"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:19.449481"], ["updated_at", "2021-10-27 23:38:19.449481"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/50” for 127.0.0.1 at 2021-10-27 17:38:19 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"50"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 50], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 50], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 50)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 50)[0m
Rendered applications/show.html.erb within layouts/application (2.1ms)
Completed 200 OK in 5ms (Views: 2.4ms | ActiveRecord: 1.1ms) Started GET “/applications/50?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-27 17:38:19 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"50"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 50], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 50], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 50)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 50)[0m
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')[0m
Rendered applications/show.html.erb within layouts/application (3.4ms)
Completed 200 OK in 6ms (Views: 3.1ms | ActiveRecord: 1.7ms) Started POST “/application_pets?app_id=50&pet_id=364” for 127.0.0.1 at 2021-10-27 17:38:19 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"50", "pet_id"=>"364"}
Completed 500 Internal Server Error in 2693ms (ActiveRecord: 0.0ms)
[1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.0ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:29.241763"], ["updated_at", "2021-10-27 23:38:29.241763"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:29.244139"], ["updated_at", "2021-10-27 23:38:29.244139"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:29.245186"], ["updated_at", "2021-10-27 23:38:29.245186"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (1.3ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[35m (3.9ms)[0m [1m[34mSELECT "shelter_id" FROM "applications" INNER JOIN "application_pets" ON "application_pets"."application_id" = "applications"."id" INNER JOIN "pets" ON "pets"."id" = "application_pets"."pet_id" WHERE "applications"."application_status" = $1[0m [["application_status", "Pending"]] Rendered admin/shelters/index.html.erb within layouts/application (34.0ms)
Completed 200 OK in 116ms (Views: 86.1ms | ActiveRecord: 26.3ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:29.405609"], ["updated_at", "2021-10-27 23:38:29.405609"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:29.406690"], ["updated_at", "2021-10-27 23:38:29.406690"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:29.407505"], ["updated_at", "2021-10-27 23:38:29.407505"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.1ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 318], ["created_at", "2021-10-27 23:38:29.420513"], ["updated_at", "2021-10-27 23:38:29.420513"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 318], ["created_at", "2021-10-27 23:38:29.422573"], ["updated_at", "2021-10-27 23:38:29.422573"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 319], ["created_at", "2021-10-27 23:38:29.423915"], ["updated_at", "2021-10-27 23:38:29.423915"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 320], ["created_at", "2021-10-27 23:38:29.425207"], ["updated_at", "2021-10-27 23:38:29.425207"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.7ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:29.430849"], ["updated_at", "2021-10-27 23:38:29.430849"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 23:38:29.432359"], ["updated_at", "2021-10-27 23:38:29.432359"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 51], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 365], ["LIMIT", 1]]
[1m[36mApplicationPet Create (1.1ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 365], ["application_id", 51], ["created_at", "2021-10-27 23:38:29.450777"], ["updated_at", "2021-10-27 23:38:29.450777"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 52], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 368], ["LIMIT", 1]]
[1m[36mApplicationPet Create (1.0ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 368], ["application_id", 52], ["created_at", "2021-10-27 23:38:29.453850"], ["updated_at", "2021-10-27 23:38:29.453850"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[35m (1.1ms)[0m [1m[34mSELECT "shelter_id" FROM "applications" INNER JOIN "application_pets" ON "application_pets"."application_id" = "applications"."id" INNER JOIN "pets" ON "pets"."id" = "application_pets"."pet_id" WHERE "applications"."application_status" = $1[0m [["application_status", "Pending"]] [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" IN ($1, $2)[0m [["id", 318], ["id", 320]] Rendered admin/shelters/index.html.erb within layouts/application (2.9ms)
Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 1.8ms)
[1m[35m (0.5ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.7ms)
Completed 200 OK in 5ms (Views: 2.9ms | ActiveRecord: 0.0ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (8.6ms)
Completed 200 OK in 11ms (Views: 9.4ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.0ms)
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (1.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (2.0ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 1.1ms)
[1m[35m (0.7ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.0ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (1.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (3.6ms)
Completed 200 OK in 14ms (Views: 5.0ms | ActiveRecord: 5.9ms)
[1m[35m (0.6ms)[0m [1m[31mROLLBACK[0m [1m[35m (5.9ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.2ms)
Completed 200 OK in 4ms (Views: 2.8ms | ActiveRecord: 0.0ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.6ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] Rendered veterinarians/index.html.erb within layouts/application (2.0ms)
Completed 200 OK in 10ms (Views: 2.8ms | ActiveRecord: 4.0ms)
[1m[35m (0.5ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:38:29.612126"], ["updated_at", "2021-10-27 23:38:29.612126"]]
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 321], ["created_at", "2021-10-27 23:38:29.647911"], ["updated_at", "2021-10-27 23:38:29.647911"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 321], ["created_at", "2021-10-27 23:38:29.650367"], ["updated_at", "2021-10-27 23:38:29.650367"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 321], ["created_at", "2021-10-27 23:38:29.651713"], ["updated_at", "2021-10-27 23:38:29.651713"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:29.652786"], ["updated_at", "2021-10-27 23:38:29.652786"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.1ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 369], ["application_id", 53], ["created_at", "2021-10-27 23:38:29.657189"], ["updated_at", "2021-10-27 23:38:29.657189"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 370], ["application_id", 53], ["created_at", "2021-10-27 23:38:29.659288"], ["updated_at", "2021-10-27 23:38:29.659288"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/53” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"53"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 53], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 53], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 53)[0m
Rendered applications/show.html.erb within layouts/application (2.5ms)
Completed 200 OK in 6ms (Views: 2.8ms | ActiveRecord: 1.3ms) Started GET “/pets/369” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"369"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 369], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 321], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.8ms)
Completed 200 OK in 4ms (Views: 2.1ms | ActiveRecord: 0.5ms) Started GET “/applications/53” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"53"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 53], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 53], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 53)[0m
Rendered applications/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 4ms (Views: 1.3ms | ActiveRecord: 1.2ms) Started GET “/pets/370” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"370"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 370], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 321], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:38:29.688970"], ["updated_at", "2021-10-27 23:38:29.688970"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 322], ["created_at", "2021-10-27 23:38:29.690435"], ["updated_at", "2021-10-27 23:38:29.690435"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 322], ["created_at", "2021-10-27 23:38:29.691620"], ["updated_at", "2021-10-27 23:38:29.691620"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 322], ["created_at", "2021-10-27 23:38:29.692734"], ["updated_at", "2021-10-27 23:38:29.692734"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:29.694138"], ["updated_at", "2021-10-27 23:38:29.694138"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/54” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"54"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 54], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 54], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 54)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 54)[0m
Rendered applications/show.html.erb within layouts/application (1.9ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 1.3ms) Started GET “/applications/54?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"54"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 54], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 54], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 54)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 54)[0m
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (2.9ms)
Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 1.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:38:29.719541"], ["updated_at", "2021-10-27 23:38:29.719541"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 323], ["created_at", "2021-10-27 23:38:29.720922"], ["updated_at", "2021-10-27 23:38:29.720922"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:29.721976"], ["updated_at", "2021-10-27 23:38:29.721976"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/55” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"55"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)[0m
Rendered applications/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.9ms) Started GET “/applications/55?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"55"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]]
[1m[36mApplication Load (0.5ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (2.2ms)
Completed 200 OK in 5ms (Views: 1.8ms | ActiveRecord: 1.9ms) Started POST “/application_pets?app_id=55&pet_id=375” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"55", "pet_id"=>"375"}
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 375], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 375], ["application_id", 55], ["created_at", "2021-10-27 23:38:29.742925"], ["updated_at", "2021-10-27 23:38:29.742925"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/55 Completed 302 Found in 3ms (ActiveRecord: 1.1ms) Started GET “/applications/55” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"55"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 55], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 55)[0m
Rendered applications/show.html.erb within layouts/application (2.5ms)
Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.9ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:38:29.752205"], ["updated_at", "2021-10-27 23:38:29.752205"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 324], ["created_at", "2021-10-27 23:38:29.753686"], ["updated_at", "2021-10-27 23:38:29.753686"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 324], ["created_at", "2021-10-27 23:38:29.754754"], ["updated_at", "2021-10-27 23:38:29.754754"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 324], ["created_at", "2021-10-27 23:38:29.755673"], ["updated_at", "2021-10-27 23:38:29.755673"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:29.756586"], ["updated_at", "2021-10-27 23:38:29.756586"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/56” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"56"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)[0m
Rendered applications/show.html.erb within layouts/application (1.6ms)
Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.9ms) Started GET “/applications/56?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"56"}
[1m[36mApplication Load (0.5ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)[0m
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')[0m
Rendered applications/show.html.erb within layouts/application (1.9ms)
Completed 200 OK in 4ms (Views: 1.5ms | ActiveRecord: 1.4ms) Started POST “/application_pets?app_id=56&pet_id=378” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"56", "pet_id"=>"378"}
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 378], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.7ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 378], ["application_id", 56], ["created_at", "2021-10-27 23:38:29.771493"], ["updated_at", "2021-10-27 23:38:29.771493"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/56 Completed 302 Found in 3ms (ActiveRecord: 1.2ms) Started GET “/applications/56” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"56"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)[0m
Rendered applications/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.7ms) Started PATCH “/applications/56” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#update as HTML
Parameters: {"utf8"=>"✓", "why"=>"I love dogs", "commit"=>"Submit Application", "id"=>"56"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit, :id
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mApplication Update (0.9ms)[0m [1m[33mUPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3[0m [["application_status", "Pending"], ["updated_at", "2021-10-27 23:38:29.781815"], ["id", 56]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/56 Completed 302 Found in 3ms (ActiveRecord: 1.3ms) Started GET “/applications/56” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"56"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 56], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 56)[0m
Rendered applications/show.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 1.0ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:29.794730"], ["updated_at", "2021-10-27 23:38:29.794730"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/57” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"57"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 57)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 57)[0m
Rendered applications/show.html.erb within layouts/application (1.8ms)
Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 1.5ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:29.802814"], ["updated_at", "2021-10-27 23:38:29.802814"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/325/pets/new” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"325"}
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 325], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (2.1ms)
Completed 200 OK in 4ms (Views: 2.6ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:29.812080"], ["updated_at", "2021-10-27 23:38:29.812080"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/326/pets/new” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"326"}
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 326], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms) Started POST “/shelters/326/pets” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"Bumblebee", "breed"=>"Welsh Corgi", "age"=>"1", "adoptable"=>"1", "commit"=>"Save ", "shelter_id"=>"326"}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 326], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "Welsh Corgi"], ["name", "Bumblebee"], ["shelter_id", 326], ["created_at", "2021-10-27 23:38:29.822765"], ["updated_at", "2021-10-27 23:38:29.822765"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Unpermitted parameters: :utf8, :commit Redirected to www.example.com/shelters/326/pets Completed 302 Found in 3ms (ActiveRecord: 1.1ms) Started GET “/shelters/326/pets” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"326"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 326], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 326], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (6.4ms)
Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.7ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:29.836519"], ["updated_at", "2021-10-27 23:38:29.836519"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/327/pets/new” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"327"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 327], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.1ms) Started POST “/shelters/327/pets” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "breed"=>"", "age"=>"", "adoptable"=>"0", "commit"=>"Save ", "shelter_id"=>"327"}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 327], ["LIMIT", 1]] [1m[35m (0.4ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Unpermitted parameters: :utf8, :commit Redirected to www.example.com/shelters/327/pets/new Completed 302 Found in 3ms (ActiveRecord: 0.6ms) Started GET “/shelters/327/pets/new” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"327"}
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 327], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:29.853374"], ["updated_at", "2021-10-27 23:38:29.853374"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 328], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 328], ["created_at", "2021-10-27 23:38:29.855133"], ["updated_at", "2021-10-27 23:38:29.855133"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 328], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 328], ["created_at", "2021-10-27 23:38:29.856476"], ["updated_at", "2021-10-27 23:38:29.856476"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 328], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 328], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.5ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:29.868102"], ["updated_at", "2021-10-27 23:38:29.868102"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 329], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 329], ["created_at", "2021-10-27 23:38:29.869665"], ["updated_at", "2021-10-27 23:38:29.869665"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 329], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 329], ["created_at", "2021-10-27 23:38:29.871010"], ["updated_at", "2021-10-27 23:38:29.871010"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 329], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 329], ["created_at", "2021-10-27 23:38:29.872516"], ["updated_at", "2021-10-27 23:38:29.872516"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 329], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 329], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.5ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:29.879588"], ["updated_at", "2021-10-27 23:38:29.879588"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 330], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 330], ["created_at", "2021-10-27 23:38:29.881831"], ["updated_at", "2021-10-27 23:38:29.881831"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 330], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 330], ["created_at", "2021-10-27 23:38:29.883363"], ["updated_at", "2021-10-27 23:38:29.883363"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 330], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 330], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.5ms)
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.4ms) Started GET “/pets/385/edit” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"385"}
[1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 385], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.1ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:29.894987"], ["updated_at", "2021-10-27 23:38:29.894987"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 331], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 331], ["created_at", "2021-10-27 23:38:29.896643"], ["updated_at", "2021-10-27 23:38:29.896643"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 331], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 331], ["created_at", "2021-10-27 23:38:29.898190"], ["updated_at", "2021-10-27 23:38:29.898190"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 331], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 331], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.3ms) Started DELETE “/pets/387” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"387"}
[1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 387], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (1.0ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 387]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 2ms (ActiveRecord: 1.3ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 331], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:29.920121"], ["updated_at", "2021-10-27 23:38:29.920121"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 332], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 332], ["created_at", "2021-10-27 23:38:29.922579"], ["updated_at", "2021-10-27 23:38:29.922579"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 332], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 332], ["created_at", "2021-10-27 23:38:29.924453"], ["updated_at", "2021-10-27 23:38:29.924453"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 332], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 332], ["created_at", "2021-10-27 23:38:29.926547"], ["updated_at", "2021-10-27 23:38:29.926547"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 332], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 332], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 332], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (2.8ms)
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.4ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 332], ["LIMIT", 1]]
[1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 332], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (4.6ms)
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 1.0ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.1ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#new as HTML
Rendering applications/new.html.erb within layouts/application Rendered applications/new.html.erb within layouts/application (1.4ms)
Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 0.0ms) Started POST “/applications” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#create as HTML
Parameters: {"utf8"=>"✓", "applicant_name"=>"Jacob Yarborough", "street_address"=>"789 South Street", "city"=>"Denver", "state"=>"CO", "zipcode"=>"80222", "why"=>"I love dogs", "commit"=>"Submit Application"}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "789 South Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80222"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:29.969176"], ["updated_at", "2021-10-27 23:38:29.969176"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Update (0.3ms)[0m [1m[33mUPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3[0m [["application_status", "In Progress"], ["updated_at", "2021-10-27 23:38:29.971033"], ["id", 58]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/58 Completed 302 Found in 4ms (ActiveRecord: 1.3ms) Started GET “/applications/58” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"58"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 58], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 58], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 58)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 58)[0m
Rendered applications/show.html.erb within layouts/application (1.8ms)
Completed 200 OK in 4ms (Views: 2.8ms | ActiveRecord: 1.1ms)
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" ORDER BY "applications"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Mystery Building"], ["city", "Irvine CA"], ["rank", 9], ["created_at", "2021-10-27 23:38:29.992530"], ["updated_at", "2021-10-27 23:38:29.992530"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 333], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 2], ["breed", "Great Dane"], ["name", "Scooby"], ["shelter_id", 333], ["created_at", "2021-10-27 23:38:29.995327"], ["updated_at", "2021-10-27 23:38:29.995327"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/392” for 127.0.0.1 at 2021-10-27 17:38:29 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"392"}
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 392], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 333], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.9ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Mystery Building"], ["city", "Irvine CA"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.006464"], ["updated_at", "2021-10-27 23:38:30.006464"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 334], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "Great Dane"], ["name", "Scrappy"], ["shelter_id", 334], ["created_at", "2021-10-27 23:38:30.008641"], ["updated_at", "2021-10-27 23:38:30.008641"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/393” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"393"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 393], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 334], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started DELETE “/pets/393” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"393"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 393], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (0.9ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 393]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 2ms (ActiveRecord: 1.4ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.8ms)
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.1ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Hollywood shelter"], ["city", "Irvine, CA"], ["rank", 7], ["created_at", "2021-10-27 23:38:30.023947"], ["updated_at", "2021-10-27 23:38:30.023947"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 335], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "George Hairlesson"], ["shelter_id", 335], ["created_at", "2021-10-27 23:38:30.025768"], ["updated_at", "2021-10-27 23:38:30.025768"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/394/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"394"}
[1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 394], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (1.2ms)
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.0ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Heavenly pets"], ["city", "Aurora, CO"], ["rank", 7], ["created_at", "2021-10-27 23:38:30.041126"], ["updated_at", "2021-10-27 23:38:30.041126"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 336], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "GSD"], ["name", "Charlie"], ["shelter_id", 336], ["created_at", "2021-10-27 23:38:30.043644"], ["updated_at", "2021-10-27 23:38:30.043644"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/395/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"395"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 395], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms) Started PATCH “/pets/395” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"Itchy", "breed"=>"", "adoptable"=>"0", "age"=>"1", "commit"=>"Save ", "id"=>"395"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 395], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 336], ["LIMIT", 1]] [1m[36mPet Update (0.5ms)[0m [1m[33mUPDATE "pets" SET "name" = $1, "age" = $2, "breed" = $3, "adoptable" = $4, "updated_at" = $5 WHERE "pets"."id" = $6[0m [["name", "Itchy"], ["age", 1], ["breed", ""], ["adoptable", false], ["updated_at", "2021-10-27 23:38:30.054120"], ["id", 395]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets/395 Completed 302 Found in 3ms (ActiveRecord: 0.9ms) Started GET “/pets/395” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"395"}
[1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 395], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 336], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Heavenly pets"], ["city", "Aurora, CO"], ["rank", 7], ["created_at", "2021-10-27 23:38:30.060008"], ["updated_at", "2021-10-27 23:38:30.060008"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 337], ["LIMIT", 1]]
[1m[36mPet Create (0.9ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "Whippet"], ["name", "Annabelle"], ["shelter_id", 337], ["created_at", "2021-10-27 23:38:30.061918"], ["updated_at", "2021-10-27 23:38:30.061918"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/396/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"396"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 396], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms) Started PATCH “/pets/396” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "breed"=>"", "adoptable"=>"0", "age"=>"", "commit"=>"Save ", "id"=>"396"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 396], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 337], ["LIMIT", 1]] [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets/396/edit Completed 302 Found in 3ms (ActiveRecord: 0.6ms) Started GET “/pets/396/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"396"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 396], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#new as HTML
Rendering shelters/new.html.erb within layouts/application Rendered shelters/new.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#new as HTML
Rendering shelters/new.html.erb within layouts/application Rendered shelters/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"Houston Shelter", "city"=>"Houston", "foster_program"=>"1", "rank"=>"7", "commit"=>"Save "}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Houston Shelter"], ["city", "Houston"], ["rank", 7], ["created_at", "2021-10-27 23:38:30.092041"], ["updated_at", "2021-10-27 23:38:30.092041"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 0.9ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#new as HTML
Rendering shelters/new.html.erb within layouts/application Rendered shelters/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "city"=>"", "foster_program"=>"0", "rank"=>"", "commit"=>"Save "}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters/new Completed 302 Found in 2ms (ActiveRecord: 0.2ms) Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#new as HTML
Rendering shelters/new.html.erb within layouts/application Rendered shelters/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.110742"], ["updated_at", "2021-10-27 23:38:30.110742"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:30.111882"], ["updated_at", "2021-10-27 23:38:30.111882"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:30.113004"], ["updated_at", "2021-10-27 23:38:30.113004"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 339], ["created_at", "2021-10-27 23:38:30.114296"], ["updated_at", "2021-10-27 23:38:30.114296"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 339], ["created_at", "2021-10-27 23:38:30.115424"], ["updated_at", "2021-10-27 23:38:30.115424"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 341], ["created_at", "2021-10-27 23:38:30.116849"], ["updated_at", "2021-10-27 23:38:30.116849"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.124403"], ["updated_at", "2021-10-27 23:38:30.124403"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:30.125461"], ["updated_at", "2021-10-27 23:38:30.125461"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:30.126263"], ["updated_at", "2021-10-27 23:38:30.126263"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 342], ["created_at", "2021-10-27 23:38:30.127353"], ["updated_at", "2021-10-27 23:38:30.127353"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 342], ["created_at", "2021-10-27 23:38:30.128740"], ["updated_at", "2021-10-27 23:38:30.128740"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.9ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 344], ["created_at", "2021-10-27 23:38:30.130271"], ["updated_at", "2021-10-27 23:38:30.130271"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.138905"], ["updated_at", "2021-10-27 23:38:30.138905"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:30.140506"], ["updated_at", "2021-10-27 23:38:30.140506"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:30.141359"], ["updated_at", "2021-10-27 23:38:30.141359"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 345], ["created_at", "2021-10-27 23:38:30.142454"], ["updated_at", "2021-10-27 23:38:30.142454"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 345], ["created_at", "2021-10-27 23:38:30.143513"], ["updated_at", "2021-10-27 23:38:30.143513"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 347], ["created_at", "2021-10-27 23:38:30.144878"], ["updated_at", "2021-10-27 23:38:30.144878"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.9ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.6ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.9ms) Started GET “/shelters?sort=pet_count” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML
Parameters: {"sort"=>"pet_count"}
Rendering shelters/index.html.erb within layouts/application
[1m[36mShelter Load (2.2ms)[0m [1m[34mSELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC[0m
Rendered shelters/index.html.erb within layouts/application (3.0ms)
Completed 200 OK in 4ms (Views: 1.3ms | ActiveRecord: 2.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.157889"], ["updated_at", "2021-10-27 23:38:30.157889"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:30.158944"], ["updated_at", "2021-10-27 23:38:30.158944"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:30.160129"], ["updated_at", "2021-10-27 23:38:30.160129"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 348], ["created_at", "2021-10-27 23:38:30.161479"], ["updated_at", "2021-10-27 23:38:30.161479"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 348], ["created_at", "2021-10-27 23:38:30.163163"], ["updated_at", "2021-10-27 23:38:30.163163"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 350], ["created_at", "2021-10-27 23:38:30.164624"], ["updated_at", "2021-10-27 23:38:30.164624"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.5ms) Started GET “/shelters/348/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#edit as HTML
Parameters: {"id"=>"348"}
[1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 348], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (1.0ms)
Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.177129"], ["updated_at", "2021-10-27 23:38:30.177129"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:30.178153"], ["updated_at", "2021-10-27 23:38:30.178153"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:30.178953"], ["updated_at", "2021-10-27 23:38:30.178953"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 351], ["created_at", "2021-10-27 23:38:30.180566"], ["updated_at", "2021-10-27 23:38:30.180566"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 351], ["created_at", "2021-10-27 23:38:30.181967"], ["updated_at", "2021-10-27 23:38:30.181967"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 353], ["created_at", "2021-10-27 23:38:30.183205"], ["updated_at", "2021-10-27 23:38:30.183205"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms) Started DELETE “/shelters/351” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#destroy as HTML
Parameters: {"id"=>"351"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 351], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 351]]
[1m[36mPet Destroy (0.5ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 409]]
[1m[36mPet Destroy (0.4ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 410]]
[1m[36mShelter Destroy (0.4ms)[0m [1m[31mDELETE FROM "shelters" WHERE "shelters"."id" = $1[0m [["id", 351]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters Completed 302 Found in 4ms (ActiveRecord: 2.0ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.199141"], ["updated_at", "2021-10-27 23:38:30.199141"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:30.200419"], ["updated_at", "2021-10-27 23:38:30.200419"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:30.201348"], ["updated_at", "2021-10-27 23:38:30.201348"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 354], ["created_at", "2021-10-27 23:38:30.202603"], ["updated_at", "2021-10-27 23:38:30.202603"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 354], ["created_at", "2021-10-27 23:38:30.203952"], ["updated_at", "2021-10-27 23:38:30.203952"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 356], ["created_at", "2021-10-27 23:38:30.205259"], ["updated_at", "2021-10-27 23:38:30.205259"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.211048"], ["updated_at", "2021-10-27 23:38:30.211048"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:30.212346"], ["updated_at", "2021-10-27 23:38:30.212346"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:30.213346"], ["updated_at", "2021-10-27 23:38:30.213346"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 357], ["created_at", "2021-10-27 23:38:30.214724"], ["updated_at", "2021-10-27 23:38:30.214724"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 357], ["created_at", "2021-10-27 23:38:30.216147"], ["updated_at", "2021-10-27 23:38:30.216147"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 359], ["created_at", "2021-10-27 23:38:30.217672"], ["updated_at", "2021-10-27 23:38:30.217672"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms) Started GET “/shelters?utf8=%E2%9C%93&search=RGV&commit=Search” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"RGV", "commit"=>"Search"}
Rendering shelters/index.html.erb within layouts/application
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%RGV%')[0m
Rendered shelters/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.230449"], ["updated_at", "2021-10-27 23:38:30.230449"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.231835"], ["updated_at", "2021-10-27 23:38:30.231835"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 360], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 360], ["created_at", "2021-10-27 23:38:30.233942"], ["updated_at", "2021-10-27 23:38:30.233942"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 360], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 360], ["created_at", "2021-10-27 23:38:30.235601"], ["updated_at", "2021-10-27 23:38:30.235601"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 361], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 361], ["created_at", "2021-10-27 23:38:30.236811"], ["updated_at", "2021-10-27 23:38:30.236811"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 360], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 360], ["created_at", "2021-10-27 23:38:30.237985"], ["updated_at", "2021-10-27 23:38:30.237985"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/360/pets” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"360"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 360], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 360], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.6ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.253998"], ["updated_at", "2021-10-27 23:38:30.253998"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.255593"], ["updated_at", "2021-10-27 23:38:30.255593"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 362], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 362], ["created_at", "2021-10-27 23:38:30.257215"], ["updated_at", "2021-10-27 23:38:30.257215"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 362], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 362], ["created_at", "2021-10-27 23:38:30.258811"], ["updated_at", "2021-10-27 23:38:30.258811"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 363], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 363], ["created_at", "2021-10-27 23:38:30.260305"], ["updated_at", "2021-10-27 23:38:30.260305"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 362], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 362], ["created_at", "2021-10-27 23:38:30.261857"], ["updated_at", "2021-10-27 23:38:30.261857"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/362/pets” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"362"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 362], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 362], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.6ms) Started GET “/shelters/362/pets/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"362"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 362], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.272718"], ["updated_at", "2021-10-27 23:38:30.272718"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.274001"], ["updated_at", "2021-10-27 23:38:30.274001"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 364], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 364], ["created_at", "2021-10-27 23:38:30.275535"], ["updated_at", "2021-10-27 23:38:30.275535"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 364], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 364], ["created_at", "2021-10-27 23:38:30.277267"], ["updated_at", "2021-10-27 23:38:30.277267"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 365], ["LIMIT", 1]]
[1m[36mPet Create (1.0ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 365], ["created_at", "2021-10-27 23:38:30.279077"], ["updated_at", "2021-10-27 23:38:30.279077"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 364], ["LIMIT", 1]]
[1m[36mPet Create (1.1ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 364], ["created_at", "2021-10-27 23:38:30.281307"], ["updated_at", "2021-10-27 23:38:30.281307"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/364/pets” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"364"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 364], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 364], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms) Started GET “/pets/426/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"426"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 426], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.291068"], ["updated_at", "2021-10-27 23:38:30.291068"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.292291"], ["updated_at", "2021-10-27 23:38:30.292291"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 366], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 366], ["created_at", "2021-10-27 23:38:30.293972"], ["updated_at", "2021-10-27 23:38:30.293972"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 366], ["LIMIT", 1]]
[1m[36mPet Create (1.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 366], ["created_at", "2021-10-27 23:38:30.295901"], ["updated_at", "2021-10-27 23:38:30.295901"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 367], ["LIMIT", 1]]
[1m[36mPet Create (0.9ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 367], ["created_at", "2021-10-27 23:38:30.298190"], ["updated_at", "2021-10-27 23:38:30.298190"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 366], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 366], ["created_at", "2021-10-27 23:38:30.300133"], ["updated_at", "2021-10-27 23:38:30.300133"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/366/pets” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"366"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 366], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 366], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms) Started DELETE “/pets/430” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"430"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 430], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (0.9ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 430]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 2ms (ActiveRecord: 1.3ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 366], ["LIMIT", 1]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 367], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 366], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.8ms)
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.314492"], ["updated_at", "2021-10-27 23:38:30.314492"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.315580"], ["updated_at", "2021-10-27 23:38:30.315580"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 368], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 368], ["created_at", "2021-10-27 23:38:30.316973"], ["updated_at", "2021-10-27 23:38:30.316973"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 368], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 368], ["created_at", "2021-10-27 23:38:30.318456"], ["updated_at", "2021-10-27 23:38:30.318456"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 369], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 369], ["created_at", "2021-10-27 23:38:30.320081"], ["updated_at", "2021-10-27 23:38:30.320081"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 368], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 368], ["created_at", "2021-10-27 23:38:30.321611"], ["updated_at", "2021-10-27 23:38:30.321611"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/368/pets” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"368"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 368], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 368], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.329534"], ["updated_at", "2021-10-27 23:38:30.329534"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.330859"], ["updated_at", "2021-10-27 23:38:30.330859"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 370], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 370], ["created_at", "2021-10-27 23:38:30.332280"], ["updated_at", "2021-10-27 23:38:30.332280"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 370], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 370], ["created_at", "2021-10-27 23:38:30.333611"], ["updated_at", "2021-10-27 23:38:30.333611"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 371], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 371], ["created_at", "2021-10-27 23:38:30.335068"], ["updated_at", "2021-10-27 23:38:30.335068"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 370], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 370], ["created_at", "2021-10-27 23:38:30.336764"], ["updated_at", "2021-10-27 23:38:30.336764"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/370/pets” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"370"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 370], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 370], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms) Started GET “/shelters/370/pets?utf8=%E2%9C%93&age=3&commit=Filter” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#pets as HTML
Parameters: {"utf8"=>"✓", "age"=>"3", "commit"=>"Filter", "shelter_id"=>"370"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 370], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= '3')[0m [["shelter_id", 370], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.4ms)
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.7ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.351008"], ["updated_at", "2021-10-27 23:38:30.351008"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.352331"], ["updated_at", "2021-10-27 23:38:30.352331"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 372], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 372], ["created_at", "2021-10-27 23:38:30.353965"], ["updated_at", "2021-10-27 23:38:30.353965"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 372], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 372], ["created_at", "2021-10-27 23:38:30.355652"], ["updated_at", "2021-10-27 23:38:30.355652"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 373], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 373], ["created_at", "2021-10-27 23:38:30.357223"], ["updated_at", "2021-10-27 23:38:30.357223"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 372], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 372], ["created_at", "2021-10-27 23:38:30.358744"], ["updated_at", "2021-10-27 23:38:30.358744"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/372/pets” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"372"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 372], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 372], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms) Started GET “/shelters/372/pets?sort=alphabetical” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#pets as HTML
Parameters: {"sort"=>"alphabetical", "shelter_id"=>"372"}
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 372], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC[0m [["shelter_id", 372], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.5ms)
Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.8ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.371652"], ["updated_at", "2021-10-27 23:38:30.371652"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/374” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#show as HTML
Parameters: {"id"=>"374"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 374], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 374]]
Rendered shelters/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.7ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.379830"], ["updated_at", "2021-10-27 23:38:30.379830"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "shorthair"], ["name", "garfield"], ["shelter_id", 375], ["created_at", "2021-10-27 23:38:30.381318"], ["updated_at", "2021-10-27 23:38:30.381318"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/375” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#show as HTML
Parameters: {"id"=>"375"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 375], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 375]]
Rendered shelters/show.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms)
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 375]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.387374"], ["updated_at", "2021-10-27 23:38:30.387374"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/376” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#show as HTML
Parameters: {"id"=>"376"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 376], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 376]]
Rendered shelters/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.6ms) Started DELETE “/shelters/376” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#destroy as HTML
Parameters: {"id"=>"376"}
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 376], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 376]]
[1m[36mShelter Destroy (0.4ms)[0m [1m[31mDELETE FROM "shelters" WHERE "shelters"."id" = $1[0m [["id", 376]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 1.0ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (0.8ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.4ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.399436"], ["updated_at", "2021-10-27 23:38:30.399436"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/377” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#show as HTML
Parameters: {"id"=>"377"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 377], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 377]]
Rendered shelters/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.5ms) Started GET “/shelters/377/pets” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"377"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 377], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 377], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.409625"], ["updated_at", "2021-10-27 23:38:30.409625"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/378/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#edit as HTML
Parameters: {"id"=>"378"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 378], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.415593"], ["updated_at", "2021-10-27 23:38:30.415593"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/379/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#edit as HTML
Parameters: {"id"=>"379"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 379], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/shelters/379” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"Wichita Shelter", "city"=>"Wichita", "foster_program"=>"0", "rank"=>"10", "commit"=>"Save ", "id"=>"379"}
Unpermitted parameters: :utf8, :_method, :commit
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 379], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mShelter Update (0.7ms)[0m [1m[33mUPDATE "shelters" SET "name" = $1, "city" = $2, "rank" = $3, "updated_at" = $4 WHERE "shelters"."id" = $5[0m [["name", "Wichita Shelter"], ["city", "Wichita"], ["rank", 10], ["updated_at", "2021-10-27 23:38:30.425111"], ["id", 379]] [1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters Completed 302 Found in 3ms (ActiveRecord: 1.2ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (0.8ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.432229"], ["updated_at", "2021-10-27 23:38:30.432229"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/380/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#edit as HTML
Parameters: {"id"=>"380"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 380], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started PATCH “/shelters/380” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "city"=>"Wichita", "foster_program"=>"0", "rank"=>"", "commit"=>"Save ", "id"=>"380"}
Unpermitted parameters: :utf8, :_method, :commit
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 380], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters/380/edit Completed 302 Found in 3ms (ActiveRecord: 0.5ms) Started GET “/shelters/380/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by SheltersController#edit as HTML
Parameters: {"id"=>"380"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 380], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.1ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (1.9ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.460797"], ["updated_at", "2021-10-27 23:38:30.460797"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/1/veterinarians/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"1"}
[1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 1], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.8ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.470577"], ["updated_at", "2021-10-27 23:38:30.470577"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/2/veterinarians/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"2"}
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.4ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.3ms) Started POST “/veterinary_offices/2/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"Dr. Burstyn", "review_rating"=>"10", "on_call"=>"1", "commit"=>"Save ", "veterinary_office_id"=>"2"}
Unpermitted parameters: :utf8, :commit
[1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
[1m[36mVeterinarian Create (2.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Dr. Burstyn"], ["veterinary_office_id", 2], ["created_at", "2021-10-27 23:38:30.491311"], ["updated_at", "2021-10-27 23:38:30.491311"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices/2/veterinarians Completed 302 Found in 16ms (ActiveRecord: 10.3ms) Started GET “/veterinary_offices/2/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"2"}
[1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 2], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 2], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.7ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.7ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.502493"], ["updated_at", "2021-10-27 23:38:30.502493"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/3/veterinarians/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"3"}
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 3], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.3ms) Started POST “/veterinary_offices/3/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "review_rating"=>"", "on_call"=>"0", "commit"=>"Save ", "veterinary_office_id"=>"3"}
Unpermitted parameters: :utf8, :commit
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 3], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 3], ["LIMIT", 1]] [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices/3/veterinarians/new Completed 302 Found in 3ms (ActiveRecord: 0.5ms) Started GET “/veterinary_offices/3/veterinarians/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"3"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 3], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.4ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.1ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.517793"], ["updated_at", "2021-10-27 23:38:30.517793"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 4], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 4], ["created_at", "2021-10-27 23:38:30.519243"], ["updated_at", "2021-10-27 23:38:30.519243"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 4], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 4], ["created_at", "2021-10-27 23:38:30.520931"], ["updated_at", "2021-10-27 23:38:30.520931"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 4], ["LIMIT", 1]] [1m[36mCACHE VeterinaryOffice Load (0.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 4], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.529491"], ["updated_at", "2021-10-27 23:38:30.529491"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 5], ["created_at", "2021-10-27 23:38:30.531001"], ["updated_at", "2021-10-27 23:38:30.531001"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 5], ["created_at", "2021-10-27 23:38:30.532792"], ["updated_at", "2021-10-27 23:38:30.532792"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 5], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.537917"], ["updated_at", "2021-10-27 23:38:30.537917"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 6], ["created_at", "2021-10-27 23:38:30.539449"], ["updated_at", "2021-10-27 23:38:30.539449"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 6], ["created_at", "2021-10-27 23:38:30.541117"], ["updated_at", "2021-10-27 23:38:30.541117"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]] [1m[36mCACHE VeterinaryOffice Load (0.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms) Started GET “/veterinarians/6/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"6"}
[1m[36mVeterinarian Load (0.7ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 6], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.8ms)
Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.7ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.552569"], ["updated_at", "2021-10-27 23:38:30.552569"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 7], ["created_at", "2021-10-27 23:38:30.554124"], ["updated_at", "2021-10-27 23:38:30.554124"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 7], ["created_at", "2021-10-27 23:38:30.555384"], ["updated_at", "2021-10-27 23:38:30.555384"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]] [1m[36mCACHE VeterinaryOffice Load (0.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms) Started DELETE “/veterinarians/8” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#destroy as HTML
Parameters: {"id"=>"8"}
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Destroy (0.2ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 8]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians Completed 302 Found in 2ms (ActiveRecord: 0.8ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 7], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.5ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.567118"], ["updated_at", "2021-10-27 23:38:30.567118"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 8], ["created_at", "2021-10-27 23:38:30.568728"], ["updated_at", "2021-10-27 23:38:30.568728"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/10” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#show as HTML
Parameters: {"id"=>"10"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 10], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 8], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.7ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.575691"], ["updated_at", "2021-10-27 23:38:30.575691"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 9], ["created_at", "2021-10-27 23:38:30.577839"], ["updated_at", "2021-10-27 23:38:30.577839"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/11” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#show as HTML
Parameters: {"id"=>"11"}
[1m[36mVeterinarian Load (1.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 9], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.7ms)
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.5ms) Started DELETE “/veterinarians/11” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#destroy as HTML
Parameters: {"id"=>"11"}
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Destroy (0.2ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 11]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.7ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.1ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] Rendered veterinarians/index.html.erb within layouts/application (0.3ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 23:38:30.592528"], ["updated_at", "2021-10-27 23:38:30.592528"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 10], ["created_at", "2021-10-27 23:38:30.593906"], ["updated_at", "2021-10-27 23:38:30.593906"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/12/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"12"}
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 23:38:30.600052"], ["updated_at", "2021-10-27 23:38:30.600052"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 11], ["created_at", "2021-10-27 23:38:30.601641"], ["updated_at", "2021-10-27 23:38:30.601641"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/13/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"13"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/veterinarians/13” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"Ignacio", "on_call"=>"0", "review_rating"=>"10", "commit"=>"Save ", "id"=>"13"}
[1m[36mVeterinarian Load (0.1ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]] [1m[36mVeterinarian Update (0.6ms)[0m [1m[33mUPDATE "veterinarians" SET "name" = $1, "on_call" = $2, "review_rating" = $3, "updated_at" = $4 WHERE "veterinarians"."id" = $5[0m [["name", "Ignacio"], ["on_call", false], ["review_rating", 10], ["updated_at", "2021-10-27 23:38:30.610323"], ["id", 13]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians/13 Completed 302 Found in 2ms (ActiveRecord: 1.0ms) Started GET “/veterinarians/13” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#show as HTML
Parameters: {"id"=>"13"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 13], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 11], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.4ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 23:38:30.616653"], ["updated_at", "2021-10-27 23:38:30.616653"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 12], ["created_at", "2021-10-27 23:38:30.618414"], ["updated_at", "2021-10-27 23:38:30.618414"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/14/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"14"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 14], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started PATCH “/veterinarians/14” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "on_call"=>"0", "review_rating"=>"", "commit"=>"Save ", "id"=>"14"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 14], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 12], ["LIMIT", 1]] [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians/14/edit Completed 302 Found in 3ms (ActiveRecord: 0.5ms) Started GET “/veterinarians/14/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"14"}
[1m[36mVeterinarian Load (0.1ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 14], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.1ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#new as HTML
Rendering veterinary_offices/new.html.erb within layouts/application Rendered veterinary_offices/new.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#new as HTML
Rendering veterinary_offices/new.html.erb within layouts/application Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"Houston Vet Office", "boarding_services"=>"0", "max_patient_capacity"=>"75", "commit"=>"Save "}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", false], ["max_patient_capacity", 75], ["name", "Houston Vet Office"], ["created_at", "2021-10-27 23:38:30.645084"], ["updated_at", "2021-10-27 23:38:30.645084"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 0.8ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#new as HTML
Rendering veterinary_offices/new.html.erb within layouts/application Rendered veterinary_offices/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "boarding_services"=>"0", "max_patient_capacity"=>"", "commit"=>"Save "}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices/new Completed 302 Found in 2ms (ActiveRecord: 0.2ms) Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#new as HTML
Rendering veterinary_offices/new.html.erb within layouts/application Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.6ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 23:38:30.662333"], ["updated_at", "2021-10-27 23:38:30.662333"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 23:38:30.663746"], ["updated_at", "2021-10-27 23:38:30.663746"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:38:30.664698"], ["updated_at", "2021-10-27 23:38:30.664698"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 14], ["created_at", "2021-10-27 23:38:30.665989"], ["updated_at", "2021-10-27 23:38:30.665989"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 14], ["created_at", "2021-10-27 23:38:30.667425"], ["updated_at", "2021-10-27 23:38:30.667425"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 16], ["created_at", "2021-10-27 23:38:30.668621"], ["updated_at", "2021-10-27 23:38:30.668621"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 23:38:30.674859"], ["updated_at", "2021-10-27 23:38:30.674859"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 23:38:30.676025"], ["updated_at", "2021-10-27 23:38:30.676025"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:38:30.677172"], ["updated_at", "2021-10-27 23:38:30.677172"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 17], ["created_at", "2021-10-27 23:38:30.678608"], ["updated_at", "2021-10-27 23:38:30.678608"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 17], ["created_at", "2021-10-27 23:38:30.679581"], ["updated_at", "2021-10-27 23:38:30.679581"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 19], ["created_at", "2021-10-27 23:38:30.680728"], ["updated_at", "2021-10-27 23:38:30.680728"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.6ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.6ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 23:38:30.688397"], ["updated_at", "2021-10-27 23:38:30.688397"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 23:38:30.689615"], ["updated_at", "2021-10-27 23:38:30.689615"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:38:30.690622"], ["updated_at", "2021-10-27 23:38:30.690622"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 20], ["created_at", "2021-10-27 23:38:30.691863"], ["updated_at", "2021-10-27 23:38:30.691863"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 20], ["created_at", "2021-10-27 23:38:30.693306"], ["updated_at", "2021-10-27 23:38:30.693306"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 22], ["created_at", "2021-10-27 23:38:30.695070"], ["updated_at", "2021-10-27 23:38:30.695070"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices?sort=veterinarian_count” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#index as HTML
Parameters: {"sort"=>"veterinarian_count"}
Rendering veterinary_offices/index.html.erb within layouts/application
[1m[36mVeterinaryOffice Load (1.2ms)[0m [1m[34mSELECT veterinary_offices.*, count(veterinarians.id) AS vets_count FROM "veterinary_offices" LEFT OUTER JOIN veterinarians ON veterinarians.veterinary_office_id = veterinary_offices.id GROUP BY veterinary_offices.id ORDER BY vets_count DESC[0m
Rendered veterinary_offices/index.html.erb within layouts/application (1.6ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 1.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 23:38:30.705230"], ["updated_at", "2021-10-27 23:38:30.705230"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 23:38:30.706468"], ["updated_at", "2021-10-27 23:38:30.706468"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:38:30.707478"], ["updated_at", "2021-10-27 23:38:30.707478"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 23], ["created_at", "2021-10-27 23:38:30.708890"], ["updated_at", "2021-10-27 23:38:30.708890"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 23], ["created_at", "2021-10-27 23:38:30.710444"], ["updated_at", "2021-10-27 23:38:30.710444"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 25], ["created_at", "2021-10-27 23:38:30.711847"], ["updated_at", "2021-10-27 23:38:30.711847"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.5ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.5ms) Started GET “/veterinary_offices/23/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"23"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 23], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 23:38:30.722755"], ["updated_at", "2021-10-27 23:38:30.722755"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 23:38:30.723869"], ["updated_at", "2021-10-27 23:38:30.723869"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:38:30.724594"], ["updated_at", "2021-10-27 23:38:30.724594"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 26], ["created_at", "2021-10-27 23:38:30.725629"], ["updated_at", "2021-10-27 23:38:30.725629"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 26], ["created_at", "2021-10-27 23:38:30.726936"], ["updated_at", "2021-10-27 23:38:30.726936"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 28], ["created_at", "2021-10-27 23:38:30.728246"], ["updated_at", "2021-10-27 23:38:30.728246"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.5ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.5ms) Started DELETE “/veterinary_offices/26” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#destroy as HTML
Parameters: {"id"=>"26"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 26], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 26]]
[1m[36mVeterinarian Destroy (0.2ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 27]]
[1m[36mVeterinarian Destroy (0.3ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 28]]
[1m[36mVeterinaryOffice Destroy (0.9ms)[0m [1m[31mDELETE FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1[0m [["id", 26]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices Completed 302 Found in 4ms (ActiveRecord: 2.0ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:38:30.743301"], ["updated_at", "2021-10-27 23:38:30.743301"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/29” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#show as HTML
Parameters: {"id"=>"29"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 29], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
[1m[35m (0.6ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 29]]
Rendered veterinary_offices/show.html.erb within layouts/application (1.5ms)
Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.8ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:38:30.751115"], ["updated_at", "2021-10-27 23:38:30.751115"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/30” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#show as HTML
Parameters: {"id"=>"30"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 30], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 30]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.6ms)
[1m[35m (0.2ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 30]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 90], ["name", "Aurora vet"], ["created_at", "2021-10-27 23:38:30.756400"], ["updated_at", "2021-10-27 23:38:30.756400"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/31” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#show as HTML
Parameters: {"id"=>"31"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 31], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 31]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.5ms) Started DELETE “/veterinary_offices/31” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#destroy as HTML
Parameters: {"id"=>"31"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 31], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 31]]
[1m[36mVeterinaryOffice Destroy (0.8ms)[0m [1m[31mDELETE FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1[0m [["id", 31]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices Completed 302 Found in 3ms (ActiveRecord: 1.5ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 90], ["name", "Aurora vet"], ["created_at", "2021-10-27 23:38:30.770608"], ["updated_at", "2021-10-27 23:38:30.770608"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/32” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#show as HTML
Parameters: {"id"=>"32"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 32], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 32]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.5ms) Started GET “/veterinary_offices/32/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"32"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 32], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 32], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 23:38:30.779193"], ["updated_at", "2021-10-27 23:38:30.779193"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/33/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"33"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 33], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 23:38:30.784965"], ["updated_at", "2021-10-27 23:38:30.784965"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/34/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"34"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 34], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms) Started PATCH “/veterinary_offices/34” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"Wichita vet office", "boarding_services"=>"0", "max_patient_capacity"=>"10", "commit"=>"Save ", "id"=>"34"}
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 34], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit, :id
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mVeterinaryOffice Update (0.4ms)[0m [1m[33mUPDATE "veterinary_offices" SET "name" = $1, "max_patient_capacity" = $2, "updated_at" = $3 WHERE "veterinary_offices"."id" = $4[0m [["name", "Wichita vet office"], ["max_patient_capacity", 10], ["updated_at", "2021-10-27 23:38:30.793714"], ["id", 34]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 0.8ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 23:38:30.799941"], ["updated_at", "2021-10-27 23:38:30.799941"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/35/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"35"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 35], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started PATCH “/veterinary_offices/35” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "boarding_services"=>"0", "max_patient_capacity"=>"", "commit"=>"Save ", "id"=>"35"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 35], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit, :id
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices/35/edit Completed 302 Found in 2ms (ActiveRecord: 0.4ms) Started GET “/veterinary_offices/35/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"35"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 35], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.7ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.815370"], ["updated_at", "2021-10-27 23:38:30.815370"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:30.816985"], ["updated_at", "2021-10-27 23:38:30.816985"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 36], ["created_at", "2021-10-27 23:38:30.818415"], ["updated_at", "2021-10-27 23:38:30.818415"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 36], ["created_at", "2021-10-27 23:38:30.819792"], ["updated_at", "2021-10-27 23:38:30.819792"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 36], ["created_at", "2021-10-27 23:38:30.821131"], ["updated_at", "2021-10-27 23:38:30.821131"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 37], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 37], ["created_at", "2021-10-27 23:38:30.822673"], ["updated_at", "2021-10-27 23:38:30.822673"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 37], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 37], ["created_at", "2021-10-27 23:38:30.824314"], ["updated_at", "2021-10-27 23:38:30.824314"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/36/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"36"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 36], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.832274"], ["updated_at", "2021-10-27 23:38:30.832274"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:30.833540"], ["updated_at", "2021-10-27 23:38:30.833540"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 38], ["created_at", "2021-10-27 23:38:30.835039"], ["updated_at", "2021-10-27 23:38:30.835039"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 38], ["created_at", "2021-10-27 23:38:30.836563"], ["updated_at", "2021-10-27 23:38:30.836563"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 38], ["created_at", "2021-10-27 23:38:30.838154"], ["updated_at", "2021-10-27 23:38:30.838154"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 39], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 39], ["created_at", "2021-10-27 23:38:30.839883"], ["updated_at", "2021-10-27 23:38:30.839883"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 39], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 39], ["created_at", "2021-10-27 23:38:30.841234"], ["updated_at", "2021-10-27 23:38:30.841234"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/38/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"38"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 38], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 38], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms) Started GET “/veterinarians/36/edit” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"36"}
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 36], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.6ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.850766"], ["updated_at", "2021-10-27 23:38:30.850766"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.6ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:30.852162"], ["updated_at", "2021-10-27 23:38:30.852162"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 40], ["created_at", "2021-10-27 23:38:30.853939"], ["updated_at", "2021-10-27 23:38:30.853939"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 40], ["created_at", "2021-10-27 23:38:30.855794"], ["updated_at", "2021-10-27 23:38:30.855794"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 40], ["created_at", "2021-10-27 23:38:30.857644"], ["updated_at", "2021-10-27 23:38:30.857644"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 41], ["created_at", "2021-10-27 23:38:30.858883"], ["updated_at", "2021-10-27 23:38:30.858883"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
[1m[36mVeterinarian Create (2.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 41], ["created_at", "2021-10-27 23:38:30.860342"], ["updated_at", "2021-10-27 23:38:30.860342"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/40/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"40"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (1.6ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 40], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (2.3ms)
Completed 200 OK in 4ms (Views: 1.2ms | ActiveRecord: 1.8ms) Started DELETE “/veterinarians/41” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#destroy as HTML
Parameters: {"id"=>"41"}
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Destroy (0.5ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 41]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians Completed 302 Found in 2ms (ActiveRecord: 1.0ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 40], ["LIMIT", 1]] [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]] [1m[36mCACHE VeterinaryOffice Load (0.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 41], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (2.2ms)
Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.8ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.6ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.877927"], ["updated_at", "2021-10-27 23:38:30.877927"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:30.879372"], ["updated_at", "2021-10-27 23:38:30.879372"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 42], ["created_at", "2021-10-27 23:38:30.881091"], ["updated_at", "2021-10-27 23:38:30.881091"]]
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 42], ["created_at", "2021-10-27 23:38:30.883210"], ["updated_at", "2021-10-27 23:38:30.883210"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 42], ["created_at", "2021-10-27 23:38:30.884622"], ["updated_at", "2021-10-27 23:38:30.884622"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 43], ["created_at", "2021-10-27 23:38:30.885940"], ["updated_at", "2021-10-27 23:38:30.885940"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 43], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 43], ["created_at", "2021-10-27 23:38:30.887290"], ["updated_at", "2021-10-27 23:38:30.887290"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/42/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"42"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 42], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms) Started GET “/veterinary_offices/42/veterinarians/new” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"42"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 42], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (1.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.897971"], ["updated_at", "2021-10-27 23:38:30.897971"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:30.900019"], ["updated_at", "2021-10-27 23:38:30.900019"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 44], ["created_at", "2021-10-27 23:38:30.901519"], ["updated_at", "2021-10-27 23:38:30.901519"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 44], ["created_at", "2021-10-27 23:38:30.902904"], ["updated_at", "2021-10-27 23:38:30.902904"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 44], ["created_at", "2021-10-27 23:38:30.904217"], ["updated_at", "2021-10-27 23:38:30.904217"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 45], ["created_at", "2021-10-27 23:38:30.905609"], ["updated_at", "2021-10-27 23:38:30.905609"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 45], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 45], ["created_at", "2021-10-27 23:38:30.907305"], ["updated_at", "2021-10-27 23:38:30.907305"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/44/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"44"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 44], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 44], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.913874"], ["updated_at", "2021-10-27 23:38:30.913874"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.7ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:30.915059"], ["updated_at", "2021-10-27 23:38:30.915059"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 46], ["created_at", "2021-10-27 23:38:30.917247"], ["updated_at", "2021-10-27 23:38:30.917247"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 46], ["created_at", "2021-10-27 23:38:30.918621"], ["updated_at", "2021-10-27 23:38:30.918621"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 46], ["created_at", "2021-10-27 23:38:30.919767"], ["updated_at", "2021-10-27 23:38:30.919767"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 47], ["created_at", "2021-10-27 23:38:30.920904"], ["updated_at", "2021-10-27 23:38:30.920904"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 47], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 47], ["created_at", "2021-10-27 23:38:30.922155"], ["updated_at", "2021-10-27 23:38:30.922155"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/46/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"46"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 46], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/46/veterinarians?utf8=%E2%9C%93&review_rating=5&commit=Filter” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"utf8"=>"✓", "review_rating"=>"5", "commit"=>"Filter", "veterinary_office_id"=>"46"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 46], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.7ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 AND (review_rating >= '5')[0m [["veterinary_office_id", 46], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.9ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:30.935493"], ["updated_at", "2021-10-27 23:38:30.935493"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:30.936515"], ["updated_at", "2021-10-27 23:38:30.936515"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 48], ["created_at", "2021-10-27 23:38:30.937759"], ["updated_at", "2021-10-27 23:38:30.937759"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 48], ["created_at", "2021-10-27 23:38:30.939043"], ["updated_at", "2021-10-27 23:38:30.939043"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 48], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 48], ["created_at", "2021-10-27 23:38:30.940521"], ["updated_at", "2021-10-27 23:38:30.940521"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 49], ["created_at", "2021-10-27 23:38:30.942107"], ["updated_at", "2021-10-27 23:38:30.942107"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 49], ["created_at", "2021-10-27 23:38:30.943599"], ["updated_at", "2021-10-27 23:38:30.943599"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/49/veterinarians” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"49"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 49], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/49/veterinarians?sort=alphabetical” for 127.0.0.1 at 2021-10-27 17:38:30 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"sort"=>"alphabetical", "veterinary_office_id"=>"49"}
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 49], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 ORDER BY "veterinarians"."name" ASC[0m [["veterinary_office_id", 49], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.4ms)
Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.6ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:38:30.963671"], ["updated_at", "2021-10-27 23:38:30.963671"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 381], ["created_at", "2021-10-27 23:38:30.965725"], ["updated_at", "2021-10-27 23:38:30.965725"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 381], ["created_at", "2021-10-27 23:38:30.967209"], ["updated_at", "2021-10-27 23:38:30.967209"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 381], ["created_at", "2021-10-27 23:38:30.968268"], ["updated_at", "2021-10-27 23:38:30.968268"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:30.969189"], ["updated_at", "2021-10-27 23:38:30.969189"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 447], ["application_id", 59], ["created_at", "2021-10-27 23:38:30.970581"], ["updated_at", "2021-10-27 23:38:30.970581"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 448], ["application_id", 59], ["created_at", "2021-10-27 23:38:30.971981"], ["updated_at", "2021-10-27 23:38:30.971981"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (1.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 59)[0m
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 59)[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:38:30.978196"], ["updated_at", "2021-10-27 23:38:30.978196"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 382], ["created_at", "2021-10-27 23:38:30.979799"], ["updated_at", "2021-10-27 23:38:30.979799"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 382], ["created_at", "2021-10-27 23:38:30.981113"], ["updated_at", "2021-10-27 23:38:30.981113"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 382], ["created_at", "2021-10-27 23:38:30.982326"], ["updated_at", "2021-10-27 23:38:30.982326"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:30.983774"], ["updated_at", "2021-10-27 23:38:30.983774"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 450], ["application_id", 60], ["created_at", "2021-10-27 23:38:30.985384"], ["updated_at", "2021-10-27 23:38:30.985384"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 451], ["application_id", 60], ["created_at", "2021-10-27 23:38:30.986688"], ["updated_at", "2021-10-27 23:38:30.986688"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 60], ["LIMIT", 1]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:38:30.989121"], ["updated_at", "2021-10-27 23:38:30.989121"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 383], ["created_at", "2021-10-27 23:38:30.990321"], ["updated_at", "2021-10-27 23:38:30.990321"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 383], ["created_at", "2021-10-27 23:38:30.991711"], ["updated_at", "2021-10-27 23:38:30.991711"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 383], ["created_at", "2021-10-27 23:38:30.992918"], ["updated_at", "2021-10-27 23:38:30.992918"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:30.993831"], ["updated_at", "2021-10-27 23:38:30.993831"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 453], ["application_id", 61], ["created_at", "2021-10-27 23:38:30.995248"], ["updated_at", "2021-10-27 23:38:30.995248"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 454], ["application_id", 61], ["created_at", "2021-10-27 23:38:30.996838"], ["updated_at", "2021-10-27 23:38:30.996838"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:30.999337"], ["updated_at", "2021-10-27 23:38:30.999337"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 384], ["created_at", "2021-10-27 23:38:31.001184"], ["updated_at", "2021-10-27 23:38:31.001184"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 384], ["created_at", "2021-10-27 23:38:31.002430"], ["updated_at", "2021-10-27 23:38:31.002430"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 384], ["created_at", "2021-10-27 23:38:31.003426"], ["updated_at", "2021-10-27 23:38:31.003426"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.006379"], ["updated_at", "2021-10-27 23:38:31.006379"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 385], ["created_at", "2021-10-27 23:38:31.007695"], ["updated_at", "2021-10-27 23:38:31.007695"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 385], ["created_at", "2021-10-27 23:38:31.008828"], ["updated_at", "2021-10-27 23:38:31.008828"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 385], ["created_at", "2021-10-27 23:38:31.009781"], ["updated_at", "2021-10-27 23:38:31.009781"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.011469"], ["updated_at", "2021-10-27 23:38:31.011469"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 386], ["created_at", "2021-10-27 23:38:31.012653"], ["updated_at", "2021-10-27 23:38:31.012653"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 386], ["created_at", "2021-10-27 23:38:31.013724"], ["updated_at", "2021-10-27 23:38:31.013724"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 386], ["created_at", "2021-10-27 23:38:31.014996"], ["updated_at", "2021-10-27 23:38:31.014996"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.017638"], ["updated_at", "2021-10-27 23:38:31.017638"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 387], ["created_at", "2021-10-27 23:38:31.018875"], ["updated_at", "2021-10-27 23:38:31.018875"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 387], ["created_at", "2021-10-27 23:38:31.019891"], ["updated_at", "2021-10-27 23:38:31.019891"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 387], ["created_at", "2021-10-27 23:38:31.020868"], ["updated_at", "2021-10-27 23:38:31.020868"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.025939"], ["updated_at", "2021-10-27 23:38:31.025939"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 388], ["created_at", "2021-10-27 23:38:31.027320"], ["updated_at", "2021-10-27 23:38:31.027320"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 388], ["created_at", "2021-10-27 23:38:31.028892"], ["updated_at", "2021-10-27 23:38:31.028892"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 388], ["created_at", "2021-10-27 23:38:31.030391"], ["updated_at", "2021-10-27 23:38:31.030391"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.035181"], ["updated_at", "2021-10-27 23:38:31.035181"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 389], ["created_at", "2021-10-27 23:38:31.036457"], ["updated_at", "2021-10-27 23:38:31.036457"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 389], ["created_at", "2021-10-27 23:38:31.037487"], ["updated_at", "2021-10-27 23:38:31.037487"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 389], ["created_at", "2021-10-27 23:38:31.038610"], ["updated_at", "2021-10-27 23:38:31.038610"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.041662"], ["updated_at", "2021-10-27 23:38:31.041662"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 390], ["created_at", "2021-10-27 23:38:31.043235"], ["updated_at", "2021-10-27 23:38:31.043235"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 390], ["created_at", "2021-10-27 23:38:31.044549"], ["updated_at", "2021-10-27 23:38:31.044549"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.1ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 390], ["created_at", "2021-10-27 23:38:31.045995"], ["updated_at", "2021-10-27 23:38:31.045995"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Claw%')[0m
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.050040"], ["updated_at", "2021-10-27 23:38:31.050040"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 391], ["created_at", "2021-10-27 23:38:31.051222"], ["updated_at", "2021-10-27 23:38:31.051222"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 391], ["created_at", "2021-10-27 23:38:31.052255"], ["updated_at", "2021-10-27 23:38:31.052255"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 391], ["created_at", "2021-10-27 23:38:31.053231"], ["updated_at", "2021-10-27 23:38:31.053231"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.055590"], ["updated_at", "2021-10-27 23:38:31.055590"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 392], ["created_at", "2021-10-27 23:38:31.057059"], ["updated_at", "2021-10-27 23:38:31.057059"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 392], ["created_at", "2021-10-27 23:38:31.058457"], ["updated_at", "2021-10-27 23:38:31.058457"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 392], ["created_at", "2021-10-27 23:38:31.059732"], ["updated_at", "2021-10-27 23:38:31.059732"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.061757"], ["updated_at", "2021-10-27 23:38:31.061757"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.062875"], ["updated_at", "2021-10-27 23:38:31.062875"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.064102"], ["updated_at", "2021-10-27 23:38:31.064102"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 393], ["created_at", "2021-10-27 23:38:31.065448"], ["updated_at", "2021-10-27 23:38:31.065448"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 393], ["created_at", "2021-10-27 23:38:31.066929"], ["updated_at", "2021-10-27 23:38:31.066929"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 395], ["created_at", "2021-10-27 23:38:31.068287"], ["updated_at", "2021-10-27 23:38:31.068287"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 393], ["created_at", "2021-10-27 23:38:31.069565"], ["updated_at", "2021-10-27 23:38:31.069565"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.071470"], ["updated_at", "2021-10-27 23:38:31.071470"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.072510"], ["updated_at", "2021-10-27 23:38:31.072510"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.073532"], ["updated_at", "2021-10-27 23:38:31.073532"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 396], ["created_at", "2021-10-27 23:38:31.074746"], ["updated_at", "2021-10-27 23:38:31.074746"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 396], ["created_at", "2021-10-27 23:38:31.076005"], ["updated_at", "2021-10-27 23:38:31.076005"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 398], ["created_at", "2021-10-27 23:38:31.077374"], ["updated_at", "2021-10-27 23:38:31.077374"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 396], ["created_at", "2021-10-27 23:38:31.078772"], ["updated_at", "2021-10-27 23:38:31.078772"]]
[1m[35m (0.6ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.084973"], ["updated_at", "2021-10-27 23:38:31.084973"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.086084"], ["updated_at", "2021-10-27 23:38:31.086084"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.086987"], ["updated_at", "2021-10-27 23:38:31.086987"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 399], ["created_at", "2021-10-27 23:38:31.088261"], ["updated_at", "2021-10-27 23:38:31.088261"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 399], ["created_at", "2021-10-27 23:38:31.089579"], ["updated_at", "2021-10-27 23:38:31.089579"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 401], ["created_at", "2021-10-27 23:38:31.090910"], ["updated_at", "2021-10-27 23:38:31.090910"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 399], ["created_at", "2021-10-27 23:38:31.092231"], ["updated_at", "2021-10-27 23:38:31.092231"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.097468"], ["updated_at", "2021-10-27 23:38:31.097468"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.098715"], ["updated_at", "2021-10-27 23:38:31.098715"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.099909"], ["updated_at", "2021-10-27 23:38:31.099909"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 402], ["created_at", "2021-10-27 23:38:31.101208"], ["updated_at", "2021-10-27 23:38:31.101208"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 402], ["created_at", "2021-10-27 23:38:31.102284"], ["updated_at", "2021-10-27 23:38:31.102284"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 404], ["created_at", "2021-10-27 23:38:31.103330"], ["updated_at", "2021-10-27 23:38:31.103330"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 402], ["created_at", "2021-10-27 23:38:31.104316"], ["updated_at", "2021-10-27 23:38:31.104316"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.107975"], ["updated_at", "2021-10-27 23:38:31.107975"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.109318"], ["updated_at", "2021-10-27 23:38:31.109318"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.110375"], ["updated_at", "2021-10-27 23:38:31.110375"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 405], ["created_at", "2021-10-27 23:38:31.111656"], ["updated_at", "2021-10-27 23:38:31.111656"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 405], ["created_at", "2021-10-27 23:38:31.113248"], ["updated_at", "2021-10-27 23:38:31.113248"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 407], ["created_at", "2021-10-27 23:38:31.114780"], ["updated_at", "2021-10-27 23:38:31.114780"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 405], ["created_at", "2021-10-27 23:38:31.117099"], ["updated_at", "2021-10-27 23:38:31.117099"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.120072"], ["updated_at", "2021-10-27 23:38:31.120072"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.121117"], ["updated_at", "2021-10-27 23:38:31.121117"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.122155"], ["updated_at", "2021-10-27 23:38:31.122155"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 408], ["created_at", "2021-10-27 23:38:31.123383"], ["updated_at", "2021-10-27 23:38:31.123383"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 408], ["created_at", "2021-10-27 23:38:31.124677"], ["updated_at", "2021-10-27 23:38:31.124677"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 410], ["created_at", "2021-10-27 23:38:31.125986"], ["updated_at", "2021-10-27 23:38:31.125986"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 408], ["created_at", "2021-10-27 23:38:31.127233"], ["updated_at", "2021-10-27 23:38:31.127233"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.130187"], ["updated_at", "2021-10-27 23:38:31.130187"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.131297"], ["updated_at", "2021-10-27 23:38:31.131297"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.132269"], ["updated_at", "2021-10-27 23:38:31.132269"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 411], ["created_at", "2021-10-27 23:38:31.133481"], ["updated_at", "2021-10-27 23:38:31.133481"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 411], ["created_at", "2021-10-27 23:38:31.134590"], ["updated_at", "2021-10-27 23:38:31.134590"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 413], ["created_at", "2021-10-27 23:38:31.135783"], ["updated_at", "2021-10-27 23:38:31.135783"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 411], ["created_at", "2021-10-27 23:38:31.136817"], ["updated_at", "2021-10-27 23:38:31.136817"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.139517"], ["updated_at", "2021-10-27 23:38:31.139517"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.140593"], ["updated_at", "2021-10-27 23:38:31.140593"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.141596"], ["updated_at", "2021-10-27 23:38:31.141596"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 414], ["created_at", "2021-10-27 23:38:31.142802"], ["updated_at", "2021-10-27 23:38:31.142802"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 414], ["created_at", "2021-10-27 23:38:31.144070"], ["updated_at", "2021-10-27 23:38:31.144070"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 416], ["created_at", "2021-10-27 23:38:31.145722"], ["updated_at", "2021-10-27 23:38:31.145722"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 414], ["created_at", "2021-10-27 23:38:31.146857"], ["updated_at", "2021-10-27 23:38:31.146857"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (1.3ms)[0m [1m[34mSELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.150398"], ["updated_at", "2021-10-27 23:38:31.150398"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.151424"], ["updated_at", "2021-10-27 23:38:31.151424"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.152408"], ["updated_at", "2021-10-27 23:38:31.152408"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 417], ["created_at", "2021-10-27 23:38:31.153641"], ["updated_at", "2021-10-27 23:38:31.153641"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 417], ["created_at", "2021-10-27 23:38:31.154938"], ["updated_at", "2021-10-27 23:38:31.154938"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 419], ["created_at", "2021-10-27 23:38:31.156257"], ["updated_at", "2021-10-27 23:38:31.156257"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 417], ["created_at", "2021-10-27 23:38:31.157627"], ["updated_at", "2021-10-27 23:38:31.157627"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.160151"], ["updated_at", "2021-10-27 23:38:31.160151"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.161201"], ["updated_at", "2021-10-27 23:38:31.161201"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.162211"], ["updated_at", "2021-10-27 23:38:31.162211"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 420], ["created_at", "2021-10-27 23:38:31.163565"], ["updated_at", "2021-10-27 23:38:31.163565"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 420], ["created_at", "2021-10-27 23:38:31.164977"], ["updated_at", "2021-10-27 23:38:31.164977"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 422], ["created_at", "2021-10-27 23:38:31.166709"], ["updated_at", "2021-10-27 23:38:31.166709"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 420], ["created_at", "2021-10-27 23:38:31.168069"], ["updated_at", "2021-10-27 23:38:31.168069"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:38:31.169281"], ["updated_at", "2021-10-27 23:38:31.169281"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 23:38:31.170451"], ["updated_at", "2021-10-27 23:38:31.170451"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 62], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 520], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 520], ["application_id", 62], ["created_at", "2021-10-27 23:38:31.172539"], ["updated_at", "2021-10-27 23:38:31.172539"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 521], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 521], ["application_id", 63], ["created_at", "2021-10-27 23:38:31.174531"], ["updated_at", "2021-10-27 23:38:31.174531"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (1.5ms)[0m [1m[34mSELECT "shelter_id" FROM "applications" INNER JOIN "application_pets" ON "application_pets"."application_id" = "applications"."id" INNER JOIN "pets" ON "pets"."id" = "application_pets"."pet_id" WHERE "applications"."application_status" = $1[0m [["application_status", "Pending"]]
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" IN ($1, $2)[0m [["id", 420], ["id", 422]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.179723"], ["updated_at", "2021-10-27 23:38:31.179723"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.180963"], ["updated_at", "2021-10-27 23:38:31.180963"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.181959"], ["updated_at", "2021-10-27 23:38:31.181959"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 423], ["created_at", "2021-10-27 23:38:31.183133"], ["updated_at", "2021-10-27 23:38:31.183133"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 423], ["created_at", "2021-10-27 23:38:31.184202"], ["updated_at", "2021-10-27 23:38:31.184202"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 425], ["created_at", "2021-10-27 23:38:31.185618"], ["updated_at", "2021-10-27 23:38:31.185618"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 423], ["created_at", "2021-10-27 23:38:31.186901"], ["updated_at", "2021-10-27 23:38:31.186901"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 423], ["adoptable", true]]
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.189615"], ["updated_at", "2021-10-27 23:38:31.189615"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.190783"], ["updated_at", "2021-10-27 23:38:31.190783"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.191804"], ["updated_at", "2021-10-27 23:38:31.191804"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 426], ["created_at", "2021-10-27 23:38:31.193027"], ["updated_at", "2021-10-27 23:38:31.193027"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 426], ["created_at", "2021-10-27 23:38:31.194501"], ["updated_at", "2021-10-27 23:38:31.194501"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 428], ["created_at", "2021-10-27 23:38:31.195709"], ["updated_at", "2021-10-27 23:38:31.195709"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 426], ["created_at", "2021-10-27 23:38:31.197050"], ["updated_at", "2021-10-27 23:38:31.197050"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC[0m [["shelter_id", 426], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.199727"], ["updated_at", "2021-10-27 23:38:31.199727"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.200683"], ["updated_at", "2021-10-27 23:38:31.200683"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.201642"], ["updated_at", "2021-10-27 23:38:31.201642"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 429], ["created_at", "2021-10-27 23:38:31.202984"], ["updated_at", "2021-10-27 23:38:31.202984"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 429], ["created_at", "2021-10-27 23:38:31.204316"], ["updated_at", "2021-10-27 23:38:31.204316"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 431], ["created_at", "2021-10-27 23:38:31.205646"], ["updated_at", "2021-10-27 23:38:31.205646"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 429], ["created_at", "2021-10-27 23:38:31.206981"], ["updated_at", "2021-10-27 23:38:31.206981"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)[0m [["shelter_id", 429], ["adoptable", true]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:38:31.209718"], ["updated_at", "2021-10-27 23:38:31.209718"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:38:31.210763"], ["updated_at", "2021-10-27 23:38:31.210763"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:38:31.211775"], ["updated_at", "2021-10-27 23:38:31.211775"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 432], ["created_at", "2021-10-27 23:38:31.213268"], ["updated_at", "2021-10-27 23:38:31.213268"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 432], ["created_at", "2021-10-27 23:38:31.214711"], ["updated_at", "2021-10-27 23:38:31.214711"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 434], ["created_at", "2021-10-27 23:38:31.216357"], ["updated_at", "2021-10-27 23:38:31.216357"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 432], ["created_at", "2021-10-27 23:38:31.217704"], ["updated_at", "2021-10-27 23:38:31.217704"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 432]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.220382"], ["updated_at", "2021-10-27 23:38:31.220382"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 50], ["created_at", "2021-10-27 23:38:31.221740"], ["updated_at", "2021-10-27 23:38:31.221740"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 50], ["created_at", "2021-10-27 23:38:31.223089"], ["updated_at", "2021-10-27 23:38:31.223089"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 50], ["created_at", "2021-10-27 23:38:31.224305"], ["updated_at", "2021-10-27 23:38:31.224305"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 50], ["created_at", "2021-10-27 23:38:31.225517"], ["updated_at", "2021-10-27 23:38:31.225517"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.228734"], ["updated_at", "2021-10-27 23:38:31.228734"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 51], ["created_at", "2021-10-27 23:38:31.230222"], ["updated_at", "2021-10-27 23:38:31.230222"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 51], ["created_at", "2021-10-27 23:38:31.231551"], ["updated_at", "2021-10-27 23:38:31.231551"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 51], ["created_at", "2021-10-27 23:38:31.232888"], ["updated_at", "2021-10-27 23:38:31.232888"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 51], ["created_at", "2021-10-27 23:38:31.234013"], ["updated_at", "2021-10-27 23:38:31.234013"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.239003"], ["updated_at", "2021-10-27 23:38:31.239003"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 52], ["created_at", "2021-10-27 23:38:31.240257"], ["updated_at", "2021-10-27 23:38:31.240257"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 52], ["created_at", "2021-10-27 23:38:31.241488"], ["updated_at", "2021-10-27 23:38:31.241488"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 52], ["created_at", "2021-10-27 23:38:31.242833"], ["updated_at", "2021-10-27 23:38:31.242833"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 52], ["created_at", "2021-10-27 23:38:31.244042"], ["updated_at", "2021-10-27 23:38:31.244042"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.248316"], ["updated_at", "2021-10-27 23:38:31.248316"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 53], ["created_at", "2021-10-27 23:38:31.249737"], ["updated_at", "2021-10-27 23:38:31.249737"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 53], ["created_at", "2021-10-27 23:38:31.251022"], ["updated_at", "2021-10-27 23:38:31.251022"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 53], ["created_at", "2021-10-27 23:38:31.252232"], ["updated_at", "2021-10-27 23:38:31.252232"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 53], ["created_at", "2021-10-27 23:38:31.253543"], ["updated_at", "2021-10-27 23:38:31.253543"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.256603"], ["updated_at", "2021-10-27 23:38:31.256603"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 54], ["created_at", "2021-10-27 23:38:31.257902"], ["updated_at", "2021-10-27 23:38:31.257902"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 54], ["created_at", "2021-10-27 23:38:31.259147"], ["updated_at", "2021-10-27 23:38:31.259147"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 54], ["created_at", "2021-10-27 23:38:31.260404"], ["updated_at", "2021-10-27 23:38:31.260404"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 54], ["created_at", "2021-10-27 23:38:31.261823"], ["updated_at", "2021-10-27 23:38:31.261823"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.7ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE (name ILIKE '%Ta%')[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.265082"], ["updated_at", "2021-10-27 23:38:31.265082"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 55], ["created_at", "2021-10-27 23:38:31.266479"], ["updated_at", "2021-10-27 23:38:31.266479"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 55], ["created_at", "2021-10-27 23:38:31.267646"], ["updated_at", "2021-10-27 23:38:31.267646"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 55], ["created_at", "2021-10-27 23:38:31.270940"], ["updated_at", "2021-10-27 23:38:31.270940"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 55], ["created_at", "2021-10-27 23:38:31.272119"], ["updated_at", "2021-10-27 23:38:31.272119"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.274475"], ["updated_at", "2021-10-27 23:38:31.274475"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 56], ["created_at", "2021-10-27 23:38:31.275699"], ["updated_at", "2021-10-27 23:38:31.275699"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 56], ["created_at", "2021-10-27 23:38:31.276883"], ["updated_at", "2021-10-27 23:38:31.276883"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 56], ["created_at", "2021-10-27 23:38:31.278144"], ["updated_at", "2021-10-27 23:38:31.278144"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 56], ["created_at", "2021-10-27 23:38:31.279507"], ["updated_at", "2021-10-27 23:38:31.279507"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.7ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.281695"], ["updated_at", "2021-10-27 23:38:31.281695"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:31.283042"], ["updated_at", "2021-10-27 23:38:31.283042"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 57], ["created_at", "2021-10-27 23:38:31.284519"], ["updated_at", "2021-10-27 23:38:31.284519"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 57], ["created_at", "2021-10-27 23:38:31.285715"], ["updated_at", "2021-10-27 23:38:31.285715"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 57], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 57], ["created_at", "2021-10-27 23:38:31.286838"], ["updated_at", "2021-10-27 23:38:31.286838"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 58], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 58], ["created_at", "2021-10-27 23:38:31.288055"], ["updated_at", "2021-10-27 23:38:31.288055"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.289923"], ["updated_at", "2021-10-27 23:38:31.289923"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:31.290915"], ["updated_at", "2021-10-27 23:38:31.290915"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 59], ["created_at", "2021-10-27 23:38:31.292317"], ["updated_at", "2021-10-27 23:38:31.292317"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 59], ["created_at", "2021-10-27 23:38:31.293795"], ["updated_at", "2021-10-27 23:38:31.293795"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 59], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.8ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 59], ["created_at", "2021-10-27 23:38:31.295559"], ["updated_at", "2021-10-27 23:38:31.295559"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 60], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 60], ["created_at", "2021-10-27 23:38:31.297544"], ["updated_at", "2021-10-27 23:38:31.297544"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.302067"], ["updated_at", "2021-10-27 23:38:31.302067"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:31.302892"], ["updated_at", "2021-10-27 23:38:31.302892"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 61], ["created_at", "2021-10-27 23:38:31.304272"], ["updated_at", "2021-10-27 23:38:31.304272"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 61], ["created_at", "2021-10-27 23:38:31.305737"], ["updated_at", "2021-10-27 23:38:31.305737"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 61], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 61], ["created_at", "2021-10-27 23:38:31.307347"], ["updated_at", "2021-10-27 23:38:31.307347"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 62], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 62], ["created_at", "2021-10-27 23:38:31.309075"], ["updated_at", "2021-10-27 23:38:31.309075"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.312727"], ["updated_at", "2021-10-27 23:38:31.312727"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:31.313899"], ["updated_at", "2021-10-27 23:38:31.313899"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 63], ["created_at", "2021-10-27 23:38:31.315440"], ["updated_at", "2021-10-27 23:38:31.315440"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 63], ["created_at", "2021-10-27 23:38:31.316979"], ["updated_at", "2021-10-27 23:38:31.316979"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 63], ["LIMIT", 1]]
[1m[36mVeterinarian Create (1.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 63], ["created_at", "2021-10-27 23:38:31.318449"], ["updated_at", "2021-10-27 23:38:31.318449"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 64], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 64], ["created_at", "2021-10-27 23:38:31.321040"], ["updated_at", "2021-10-27 23:38:31.321040"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.323734"], ["updated_at", "2021-10-27 23:38:31.323734"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:31.324770"], ["updated_at", "2021-10-27 23:38:31.324770"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 65], ["created_at", "2021-10-27 23:38:31.326180"], ["updated_at", "2021-10-27 23:38:31.326180"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 65], ["created_at", "2021-10-27 23:38:31.327943"], ["updated_at", "2021-10-27 23:38:31.327943"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 65], ["created_at", "2021-10-27 23:38:31.329286"], ["updated_at", "2021-10-27 23:38:31.329286"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 66], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.9ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 66], ["created_at", "2021-10-27 23:38:31.330532"], ["updated_at", "2021-10-27 23:38:31.330532"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE (name ILIKE '%Vets%')[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.333404"], ["updated_at", "2021-10-27 23:38:31.333404"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:31.334308"], ["updated_at", "2021-10-27 23:38:31.334308"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 67], ["created_at", "2021-10-27 23:38:31.335790"], ["updated_at", "2021-10-27 23:38:31.335790"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 67], ["created_at", "2021-10-27 23:38:31.337355"], ["updated_at", "2021-10-27 23:38:31.337355"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 67], ["created_at", "2021-10-27 23:38:31.338814"], ["updated_at", "2021-10-27 23:38:31.338814"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 68], ["created_at", "2021-10-27 23:38:31.340253"], ["updated_at", "2021-10-27 23:38:31.340253"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.342845"], ["updated_at", "2021-10-27 23:38:31.342845"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:31.343732"], ["updated_at", "2021-10-27 23:38:31.343732"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 69], ["created_at", "2021-10-27 23:38:31.344872"], ["updated_at", "2021-10-27 23:38:31.344872"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 69], ["created_at", "2021-10-27 23:38:31.345961"], ["updated_at", "2021-10-27 23:38:31.345961"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.8ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 69], ["created_at", "2021-10-27 23:38:31.347599"], ["updated_at", "2021-10-27 23:38:31.347599"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.9ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 70], ["created_at", "2021-10-27 23:38:31.349470"], ["updated_at", "2021-10-27 23:38:31.349470"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (1.0ms)[0m [1m[34mSELECT veterinary_offices.*, count(veterinarians.id) AS vets_count FROM "veterinary_offices" LEFT OUTER JOIN veterinarians ON veterinarians.veterinary_office_id = veterinary_offices.id GROUP BY veterinary_offices.id ORDER BY vets_count DESC[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.353018"], ["updated_at", "2021-10-27 23:38:31.353018"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:31.353942"], ["updated_at", "2021-10-27 23:38:31.353942"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 71], ["created_at", "2021-10-27 23:38:31.355207"], ["updated_at", "2021-10-27 23:38:31.355207"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 71], ["created_at", "2021-10-27 23:38:31.356718"], ["updated_at", "2021-10-27 23:38:31.356718"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 71], ["created_at", "2021-10-27 23:38:31.358158"], ["updated_at", "2021-10-27 23:38:31.358158"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 72], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 72], ["created_at", "2021-10-27 23:38:31.359711"], ["updated_at", "2021-10-27 23:38:31.359711"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 71]]
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 72]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.363019"], ["updated_at", "2021-10-27 23:38:31.363019"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:31.364158"], ["updated_at", "2021-10-27 23:38:31.364158"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 73], ["created_at", "2021-10-27 23:38:31.365761"], ["updated_at", "2021-10-27 23:38:31.365761"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 73], ["created_at", "2021-10-27 23:38:31.367321"], ["updated_at", "2021-10-27 23:38:31.367321"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 73], ["created_at", "2021-10-27 23:38:31.368796"], ["updated_at", "2021-10-27 23:38:31.368796"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 74], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 74], ["created_at", "2021-10-27 23:38:31.370253"], ["updated_at", "2021-10-27 23:38:31.370253"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.5ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 ORDER BY "veterinarians"."name" ASC[0m [["veterinary_office_id", 73], ["on_call", true]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.372960"], ["updated_at", "2021-10-27 23:38:31.372960"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:31.374024"], ["updated_at", "2021-10-27 23:38:31.374024"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 75], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 75], ["created_at", "2021-10-27 23:38:31.375423"], ["updated_at", "2021-10-27 23:38:31.375423"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 75], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 75], ["created_at", "2021-10-27 23:38:31.376979"], ["updated_at", "2021-10-27 23:38:31.376979"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 75], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 75], ["created_at", "2021-10-27 23:38:31.378538"], ["updated_at", "2021-10-27 23:38:31.378538"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 76], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.8ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 76], ["created_at", "2021-10-27 23:38:31.380333"], ["updated_at", "2021-10-27 23:38:31.380333"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 75], ["on_call", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:38:31.383282"], ["updated_at", "2021-10-27 23:38:31.383282"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:38:31.384362"], ["updated_at", "2021-10-27 23:38:31.384362"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 77], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 77], ["created_at", "2021-10-27 23:38:31.385777"], ["updated_at", "2021-10-27 23:38:31.385777"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 77], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 77], ["created_at", "2021-10-27 23:38:31.387275"], ["updated_at", "2021-10-27 23:38:31.387275"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 77], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 77], ["created_at", "2021-10-27 23:38:31.388727"], ["updated_at", "2021-10-27 23:38:31.388727"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 78], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 78], ["created_at", "2021-10-27 23:38:31.390322"], ["updated_at", "2021-10-27 23:38:31.390322"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.6ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 AND (review_rating >= 9)[0m [["veterinary_office_id", 77], ["on_call", true]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:19.754392"], ["updated_at", "2021-10-27 23:39:19.754392"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:19.756628"], ["updated_at", "2021-10-27 23:39:19.756628"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:19.757630"], ["updated_at", "2021-10-27 23:39:19.757630"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 17:39:19 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.7ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[35m (3.2ms)[0m [1m[34mSELECT "shelter_id" FROM "applications" INNER JOIN "application_pets" ON "application_pets"."application_id" = "applications"."id" INNER JOIN "pets" ON "pets"."id" = "application_pets"."pet_id" WHERE "applications"."application_status" = $1[0m [["application_status", "Pending"]] Rendered admin/shelters/index.html.erb within layouts/application (34.5ms)
Completed 200 OK in 117ms (Views: 91.5ms | ActiveRecord: 22.0ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:19.918586"], ["updated_at", "2021-10-27 23:39:19.918586"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:19.919831"], ["updated_at", "2021-10-27 23:39:19.919831"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:19.920723"], ["updated_at", "2021-10-27 23:39:19.920723"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.9ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 438], ["created_at", "2021-10-27 23:39:19.932340"], ["updated_at", "2021-10-27 23:39:19.932340"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 438], ["created_at", "2021-10-27 23:39:19.934172"], ["updated_at", "2021-10-27 23:39:19.934172"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 439], ["created_at", "2021-10-27 23:39:19.935767"], ["updated_at", "2021-10-27 23:39:19.935767"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 6], ["breed", "Golden Retriever"], ["name", "Molly"], ["shelter_id", 440], ["created_at", "2021-10-27 23:39:19.937285"], ["updated_at", "2021-10-27 23:39:19.937285"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.7ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:39:19.942892"], ["updated_at", "2021-10-27 23:39:19.942892"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.8ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 23:39:19.944358"], ["updated_at", "2021-10-27 23:39:19.944358"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.6ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 64], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 539], ["LIMIT", 1]]
[1m[36mApplicationPet Create (1.2ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 539], ["application_id", 64], ["created_at", "2021-10-27 23:39:19.964471"], ["updated_at", "2021-10-27 23:39:19.964471"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 65], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 542], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 542], ["application_id", 65], ["created_at", "2021-10-27 23:39:19.967343"], ["updated_at", "2021-10-27 23:39:19.967343"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/admin/shelters” for 127.0.0.1 at 2021-10-27 17:39:19 -0600 Processing by Admin::SheltersController#index as HTML
Rendering admin/shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m [1m[35m (1.4ms)[0m [1m[34mSELECT "shelter_id" FROM "applications" INNER JOIN "application_pets" ON "application_pets"."application_id" = "applications"."id" INNER JOIN "pets" ON "pets"."id" = "application_pets"."pet_id" WHERE "applications"."application_status" = $1[0m [["application_status", "Pending"]] [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" IN ($1, $2)[0m [["id", 438], ["id", 440]] Rendered admin/shelters/index.html.erb within layouts/application (3.0ms)
Completed 200 OK in 4ms (Views: 1.6ms | ActiveRecord: 2.0ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-27 17:39:19 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.5ms)
Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.0ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:39:19 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (5.8ms)
Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.0ms)
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (1.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.9ms)
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 1.0ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.3ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.0ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.8ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (2.5ms)
Completed 200 OK in 14ms (Views: 4.1ms | ActiveRecord: 3.7ms)
[1m[35m (3.9ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationController#welcome as HTML
Rendering application/welcome.html.erb within layouts/application Rendered application/welcome.html.erb within layouts/application (0.0ms)
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (1.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] Rendered veterinarians/index.html.erb within layouts/application (5.6ms)
Completed 200 OK in 47ms (Views: 34.3ms | ActiveRecord: 5.3ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.3ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:39:20.116737"], ["updated_at", "2021-10-27 23:39:20.116737"]]
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.9ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 441], ["created_at", "2021-10-27 23:39:20.121081"], ["updated_at", "2021-10-27 23:39:20.121081"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 441], ["created_at", "2021-10-27 23:39:20.123450"], ["updated_at", "2021-10-27 23:39:20.123450"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 441], ["created_at", "2021-10-27 23:39:20.126001"], ["updated_at", "2021-10-27 23:39:20.126001"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:39:20.156394"], ["updated_at", "2021-10-27 23:39:20.156394"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.9ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 543], ["application_id", 66], ["created_at", "2021-10-27 23:39:20.160732"], ["updated_at", "2021-10-27 23:39:20.160732"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.2ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 544], ["application_id", 66], ["created_at", "2021-10-27 23:39:20.162746"], ["updated_at", "2021-10-27 23:39:20.162746"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/66” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"66"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 66], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 66], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 66)[0m
Rendered applications/show.html.erb within layouts/application (2.7ms)
Completed 200 OK in 5ms (Views: 2.1ms | ActiveRecord: 2.1ms) Started GET “/pets/543” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"543"}
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 543], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 441], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (1.5ms)
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.7ms) Started GET “/applications/66” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"66"}
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 66], ["LIMIT", 1]]
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 66], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 66)[0m
Rendered applications/show.html.erb within layouts/application (1.5ms)
Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 1.7ms) Started GET “/pets/544” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"544"}
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 544], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 441], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.7ms)
[1m[35m (0.4ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:39:20.193551"], ["updated_at", "2021-10-27 23:39:20.193551"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 442], ["created_at", "2021-10-27 23:39:20.195299"], ["updated_at", "2021-10-27 23:39:20.195299"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 442], ["created_at", "2021-10-27 23:39:20.196783"], ["updated_at", "2021-10-27 23:39:20.196783"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 442], ["created_at", "2021-10-27 23:39:20.199273"], ["updated_at", "2021-10-27 23:39:20.199273"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:39:20.200630"], ["updated_at", "2021-10-27 23:39:20.200630"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/67” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"67"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 67)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 67)[0m
Rendered applications/show.html.erb within layouts/application (1.9ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 1.4ms) Started GET “/applications/67?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"67"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 67], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (1.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 67)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 67)[0m
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (4.0ms)
Completed 200 OK in 6ms (Views: 2.9ms | ActiveRecord: 2.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:39:20.226238"], ["updated_at", "2021-10-27 23:39:20.226238"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 443], ["created_at", "2021-10-27 23:39:20.227675"], ["updated_at", "2021-10-27 23:39:20.227675"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:39:20.228763"], ["updated_at", "2021-10-27 23:39:20.228763"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/68” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"68"}
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 68)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 68)[0m
Rendered applications/show.html.erb within layouts/application (1.7ms)
Completed 200 OK in 4ms (Views: 1.5ms | ActiveRecord: 1.2ms) Started GET “/applications/68?utf8=%E2%9C%93&search=b&commit=Search” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"b", "commit"=>"Search", "id"=>"68"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 68)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 68)[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%b%')[0m
Rendered applications/show.html.erb within layouts/application (1.9ms)
Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 1.4ms) Started POST “/application_pets?app_id=68&pet_id=549” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"68", "pet_id"=>"549"}
[1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.3ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 549], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.6ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 549], ["application_id", 68], ["created_at", "2021-10-27 23:39:20.250781"], ["updated_at", "2021-10-27 23:39:20.250781"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/68 Completed 302 Found in 4ms (ActiveRecord: 1.7ms) Started GET “/applications/68” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"68"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 68], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 68)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 68)[0m
Rendered applications/show.html.erb within layouts/application (1.8ms)
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.8ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:39:20.258689"], ["updated_at", "2021-10-27 23:39:20.258689"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 444], ["created_at", "2021-10-27 23:39:20.260038"], ["updated_at", "2021-10-27 23:39:20.260038"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 444], ["created_at", "2021-10-27 23:39:20.261398"], ["updated_at", "2021-10-27 23:39:20.261398"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 444], ["created_at", "2021-10-27 23:39:20.262677"], ["updated_at", "2021-10-27 23:39:20.262677"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.4ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:39:20.264043"], ["updated_at", "2021-10-27 23:39:20.264043"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/69” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"69"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)[0m
Rendered applications/show.html.erb within layouts/application (1.7ms)
Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 1.3ms) Started GET “/applications/69?utf8=%E2%9C%93&search=m&commit=Search” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"utf8"=>"✓", "search"=>"m", "commit"=>"Search", "id"=>"69"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (lower(pets.name) like '%m%')[0m
Rendered applications/show.html.erb within layouts/application (1.8ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 1.1ms) Started POST “/application_pets?app_id=69&pet_id=552” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationPetsController#create as HTML
Parameters: {"app_id"=>"69", "pet_id"=>"552"}
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 552], ["LIMIT", 1]]
[1m[36mApplicationPet Create (1.2ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 552], ["application_id", 69], ["created_at", "2021-10-27 23:39:20.279550"], ["updated_at", "2021-10-27 23:39:20.279550"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/69 Completed 302 Found in 4ms (ActiveRecord: 2.1ms) Started GET “/applications/69” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"69"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.6ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)[0m
Rendered applications/show.html.erb within layouts/application (1.6ms)
Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.9ms) Started PATCH “/applications/69” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#update as HTML
Parameters: {"utf8"=>"✓", "why"=>"I love dogs", "commit"=>"Submit Application", "id"=>"69"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit, :id
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mApplication Update (0.4ms)[0m [1m[33mUPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3[0m [["application_status", "Pending"], ["updated_at", "2021-10-27 23:39:20.290734"], ["id", 69]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/69 Completed 302 Found in 2ms (ActiveRecord: 0.7ms) Started GET “/applications/69” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"69"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 69], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 69)[0m
Rendered applications/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 1.0ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.5ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "In Progress"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:39:20.303283"], ["updated_at", "2021-10-27 23:39:20.303283"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/applications/70” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"70"}
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 70], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 70)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 70)[0m
Rendered applications/show.html.erb within layouts/application (1.6ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 1.1ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.310653"], ["updated_at", "2021-10-27 23:39:20.310653"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/445/pets/new” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"445"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 445], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (1.7ms)
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.319467"], ["updated_at", "2021-10-27 23:39:20.319467"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/446/pets/new” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"446"}
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 446], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.3ms) Started POST “/shelters/446/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"Bumblebee", "breed"=>"Welsh Corgi", "age"=>"1", "adoptable"=>"1", "commit"=>"Save ", "shelter_id"=>"446"}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 446], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "Welsh Corgi"], ["name", "Bumblebee"], ["shelter_id", 446], ["created_at", "2021-10-27 23:39:20.330233"], ["updated_at", "2021-10-27 23:39:20.330233"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Unpermitted parameters: :utf8, :commit Redirected to www.example.com/shelters/446/pets Completed 302 Found in 3ms (ActiveRecord: 0.9ms) Started GET “/shelters/446/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"446"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 446], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 446], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (2.0ms)
Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.342256"], ["updated_at", "2021-10-27 23:39:20.342256"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/447/pets/new” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"447"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 447], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.6ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms) Started POST “/shelters/447/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "breed"=>"", "age"=>"", "adoptable"=>"0", "commit"=>"Save ", "shelter_id"=>"447"}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 447], ["LIMIT", 1]] [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Unpermitted parameters: :utf8, :commit Redirected to www.example.com/shelters/447/pets/new Completed 302 Found in 3ms (ActiveRecord: 0.4ms) Started GET “/shelters/447/pets/new” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"447"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 447], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.359191"], ["updated_at", "2021-10-27 23:39:20.359191"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 448], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 448], ["created_at", "2021-10-27 23:39:20.361066"], ["updated_at", "2021-10-27 23:39:20.361066"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 448], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 448], ["created_at", "2021-10-27 23:39:20.362998"], ["updated_at", "2021-10-27 23:39:20.362998"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 448], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 448], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.7ms)
Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.375592"], ["updated_at", "2021-10-27 23:39:20.375592"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 449], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 449], ["created_at", "2021-10-27 23:39:20.377326"], ["updated_at", "2021-10-27 23:39:20.377326"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 449], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 449], ["created_at", "2021-10-27 23:39:20.379065"], ["updated_at", "2021-10-27 23:39:20.379065"]]
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 449], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 2], ["breed", "saint bernard"], ["name", "Beethoven"], ["shelter_id", 449], ["created_at", "2021-10-27 23:39:20.381576"], ["updated_at", "2021-10-27 23:39:20.381576"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 449], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 449], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.6ms)
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.388721"], ["updated_at", "2021-10-27 23:39:20.388721"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 450], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 450], ["created_at", "2021-10-27 23:39:20.390478"], ["updated_at", "2021-10-27 23:39:20.390478"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 450], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 450], ["created_at", "2021-10-27 23:39:20.392087"], ["updated_at", "2021-10-27 23:39:20.392087"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 450], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 450], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.5ms)
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.5ms) Started GET “/pets/559/edit” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"559"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 559], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.404366"], ["updated_at", "2021-10-27 23:39:20.404366"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 451], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 451], ["created_at", "2021-10-27 23:39:20.406221"], ["updated_at", "2021-10-27 23:39:20.406221"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 451], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 451], ["created_at", "2021-10-27 23:39:20.407850"], ["updated_at", "2021-10-27 23:39:20.407850"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 451], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 451], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.7ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.7ms) Started DELETE “/pets/561” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"561"}
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 561], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (1.0ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 561]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 3ms (ActiveRecord: 1.9ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 451], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.429508"], ["updated_at", "2021-10-27 23:39:20.429508"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 452], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 7], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 452], ["created_at", "2021-10-27 23:39:20.432501"], ["updated_at", "2021-10-27 23:39:20.432501"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 452], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "domestic pig"], ["name", "Babe"], ["shelter_id", 452], ["created_at", "2021-10-27 23:39:20.434577"], ["updated_at", "2021-10-27 23:39:20.434577"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 452], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 4], ["breed", "chihuahua"], ["name", "Elle"], ["shelter_id", 452], ["created_at", "2021-10-27 23:39:20.435968"], ["updated_at", "2021-10-27 23:39:20.435968"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 452], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 452], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 452], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (2.6ms)
Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.4ms) Started GET “/pets?utf8=%E2%9C%93&search=Ba&commit=Search” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"Ba", "commit"=>"Search"}
Rendering pets/index.html.erb within layouts/application
[1m[36mPet Load (0.9ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Ba%')[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 452], ["LIMIT", 1]]
[1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 452], ["LIMIT", 1]]
Rendered pets/index.html.erb within layouts/application (2.8ms)
Completed 200 OK in 4ms (Views: 2.7ms | ActiveRecord: 1.0ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms) Started GET “/applications/new” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#new as HTML
Rendering applications/new.html.erb within layouts/application Rendered applications/new.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms) Started POST “/applications” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#create as HTML
Parameters: {"utf8"=>"✓", "applicant_name"=>"Jacob Yarborough", "street_address"=>"789 South Street", "city"=>"Denver", "state"=>"CO", "zipcode"=>"80222", "why"=>"I love dogs", "commit"=>"Submit Application"}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.6ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "789 South Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80222"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:39:20.479963"], ["updated_at", "2021-10-27 23:39:20.479963"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Update (0.4ms)[0m [1m[33mUPDATE "applications" SET "application_status" = $1, "updated_at" = $2 WHERE "applications"."id" = $3[0m [["application_status", "In Progress"], ["updated_at", "2021-10-27 23:39:20.481759"], ["id", 71]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/applications/71 Completed 302 Found in 4ms (ActiveRecord: 1.5ms) Started GET “/applications/71” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by ApplicationsController#show as HTML
Parameters: {"id"=>"71"}
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
[1m[36mApplication Load (0.1ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 71], ["LIMIT", 1]]
Rendering applications/show.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 71)[0m
[1m[36mCACHE Pet Load (0.0ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 71)[0m
Rendered applications/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.7ms)
[1m[36mApplication Load (0.4ms)[0m [1m[34mSELECT "applications".* FROM "applications" ORDER BY "applications"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Mystery Building"], ["city", "Irvine CA"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.501359"], ["updated_at", "2021-10-27 23:39:20.501359"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 453], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 2], ["breed", "Great Dane"], ["name", "Scooby"], ["shelter_id", 453], ["created_at", "2021-10-27 23:39:20.503709"], ["updated_at", "2021-10-27 23:39:20.503709"]]
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/566” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"566"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 566], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 453], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Mystery Building"], ["city", "Irvine CA"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.516748"], ["updated_at", "2021-10-27 23:39:20.516748"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 454], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "Great Dane"], ["name", "Scrappy"], ["shelter_id", 454], ["created_at", "2021-10-27 23:39:20.519062"], ["updated_at", "2021-10-27 23:39:20.519062"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/567” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"567"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 567], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 454], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.3ms) Started DELETE “/pets/567” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"567"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 567], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (0.8ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 567]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 2ms (ActiveRecord: 1.3ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] Rendered pets/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Hollywood shelter"], ["city", "Irvine, CA"], ["rank", 7], ["created_at", "2021-10-27 23:39:20.535009"], ["updated_at", "2021-10-27 23:39:20.535009"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 455], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "George Hairlesson"], ["shelter_id", 455], ["created_at", "2021-10-27 23:39:20.536729"], ["updated_at", "2021-10-27 23:39:20.536729"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/568/edit” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"568"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 568], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.2ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.9ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Heavenly pets"], ["city", "Aurora, CO"], ["rank", 7], ["created_at", "2021-10-27 23:39:20.546852"], ["updated_at", "2021-10-27 23:39:20.546852"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.9ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 456], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "GSD"], ["name", "Charlie"], ["shelter_id", 456], ["created_at", "2021-10-27 23:39:20.550463"], ["updated_at", "2021-10-27 23:39:20.550463"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/569/edit” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"569"}
[1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 569], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.1ms) Started PATCH “/pets/569” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"Itchy", "breed"=>"", "adoptable"=>"0", "age"=>"1", "commit"=>"Save ", "id"=>"569"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 569], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 456], ["LIMIT", 1]] [1m[36mPet Update (0.8ms)[0m [1m[33mUPDATE "pets" SET "name" = $1, "age" = $2, "breed" = $3, "adoptable" = $4, "updated_at" = $5 WHERE "pets"."id" = $6[0m [["name", "Itchy"], ["age", 1], ["breed", ""], ["adoptable", false], ["updated_at", "2021-10-27 23:39:20.568028"], ["id", 569]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets/569 Completed 302 Found in 3ms (ActiveRecord: 1.5ms) Started GET “/pets/569” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#show as HTML
Parameters: {"id"=>"569"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 569], ["LIMIT", 1]]
Rendering pets/show.html.erb within layouts/application
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 456], ["LIMIT", 1]]
Rendered pets/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Heavenly pets"], ["city", "Aurora, CO"], ["rank", 7], ["created_at", "2021-10-27 23:39:20.574413"], ["updated_at", "2021-10-27 23:39:20.574413"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 457], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "Whippet"], ["name", "Annabelle"], ["shelter_id", 457], ["created_at", "2021-10-27 23:39:20.576094"], ["updated_at", "2021-10-27 23:39:20.576094"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/pets/570/edit” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"570"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 570], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.2ms) Started PATCH “/pets/570” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "breed"=>"", "adoptable"=>"0", "age"=>"", "commit"=>"Save ", "id"=>"570"}
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 570], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 457], ["LIMIT", 1]] [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets/570/edit Completed 302 Found in 3ms (ActiveRecord: 0.6ms) Started GET “/pets/570/edit” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"570"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 570], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#new as HTML
Rendering shelters/new.html.erb within layouts/application Rendered shelters/new.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#new as HTML
Rendering shelters/new.html.erb within layouts/application Rendered shelters/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms) Started POST “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"Houston Shelter", "city"=>"Houston", "foster_program"=>"1", "rank"=>"7", "commit"=>"Save "}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Houston Shelter"], ["city", "Houston"], ["rank", 7], ["created_at", "2021-10-27 23:39:20.605479"], ["updated_at", "2021-10-27 23:39:20.605479"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 0.9ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#new as HTML
Rendering shelters/new.html.erb within layouts/application Rendered shelters/new.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms) Started POST “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "city"=>"", "foster_program"=>"0", "rank"=>"", "commit"=>"Save "}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters/new Completed 302 Found in 2ms (ActiveRecord: 0.2ms) Started GET “/shelters/new” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#new as HTML
Rendering shelters/new.html.erb within layouts/application Rendered shelters/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.624283"], ["updated_at", "2021-10-27 23:39:20.624283"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:20.625643"], ["updated_at", "2021-10-27 23:39:20.625643"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:20.626699"], ["updated_at", "2021-10-27 23:39:20.626699"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.8ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 459], ["created_at", "2021-10-27 23:39:20.628137"], ["updated_at", "2021-10-27 23:39:20.628137"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 459], ["created_at", "2021-10-27 23:39:20.629972"], ["updated_at", "2021-10-27 23:39:20.629972"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 461], ["created_at", "2021-10-27 23:39:20.631377"], ["updated_at", "2021-10-27 23:39:20.631377"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.638506"], ["updated_at", "2021-10-27 23:39:20.638506"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:20.639753"], ["updated_at", "2021-10-27 23:39:20.639753"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:20.640777"], ["updated_at", "2021-10-27 23:39:20.640777"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 462], ["created_at", "2021-10-27 23:39:20.642062"], ["updated_at", "2021-10-27 23:39:20.642062"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 462], ["created_at", "2021-10-27 23:39:20.643468"], ["updated_at", "2021-10-27 23:39:20.643468"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 464], ["created_at", "2021-10-27 23:39:20.644891"], ["updated_at", "2021-10-27 23:39:20.644891"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.6ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.6ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.653344"], ["updated_at", "2021-10-27 23:39:20.653344"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:20.654620"], ["updated_at", "2021-10-27 23:39:20.654620"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:20.655705"], ["updated_at", "2021-10-27 23:39:20.655705"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 465], ["created_at", "2021-10-27 23:39:20.657007"], ["updated_at", "2021-10-27 23:39:20.657007"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 465], ["created_at", "2021-10-27 23:39:20.658319"], ["updated_at", "2021-10-27 23:39:20.658319"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 467], ["created_at", "2021-10-27 23:39:20.659653"], ["updated_at", "2021-10-27 23:39:20.659653"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.5ms) Started GET “/shelters?sort=pet_count” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML
Parameters: {"sort"=>"pet_count"}
Rendering shelters/index.html.erb within layouts/application
[1m[36mShelter Load (1.9ms)[0m [1m[34mSELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC[0m
Rendered shelters/index.html.erb within layouts/application (2.6ms)
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 1.9ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.671589"], ["updated_at", "2021-10-27 23:39:20.671589"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:20.672852"], ["updated_at", "2021-10-27 23:39:20.672852"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:20.673882"], ["updated_at", "2021-10-27 23:39:20.673882"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 468], ["created_at", "2021-10-27 23:39:20.675198"], ["updated_at", "2021-10-27 23:39:20.675198"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 468], ["created_at", "2021-10-27 23:39:20.676653"], ["updated_at", "2021-10-27 23:39:20.676653"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 470], ["created_at", "2021-10-27 23:39:20.678184"], ["updated_at", "2021-10-27 23:39:20.678184"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.7ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.4ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.7ms) Started GET “/shelters/468/edit” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#edit as HTML
Parameters: {"id"=>"468"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 468], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (2.0ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.690249"], ["updated_at", "2021-10-27 23:39:20.690249"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:20.693047"], ["updated_at", "2021-10-27 23:39:20.693047"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:20.694196"], ["updated_at", "2021-10-27 23:39:20.694196"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 471], ["created_at", "2021-10-27 23:39:20.695788"], ["updated_at", "2021-10-27 23:39:20.695788"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.9ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 471], ["created_at", "2021-10-27 23:39:20.697459"], ["updated_at", "2021-10-27 23:39:20.697459"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 473], ["created_at", "2021-10-27 23:39:20.699190"], ["updated_at", "2021-10-27 23:39:20.699190"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.5ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms) Started DELETE “/shelters/471” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#destroy as HTML
Parameters: {"id"=>"471"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 471], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 471]]
[1m[36mPet Destroy (0.8ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 583]]
[1m[36mPet Destroy (0.6ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 584]]
[1m[36mShelter Destroy (0.9ms)[0m [1m[31mDELETE FROM "shelters" WHERE "shelters"."id" = $1[0m [["id", 471]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters Completed 302 Found in 5ms (ActiveRecord: 3.0ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.716860"], ["updated_at", "2021-10-27 23:39:20.716860"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:20.717964"], ["updated_at", "2021-10-27 23:39:20.717964"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:20.719001"], ["updated_at", "2021-10-27 23:39:20.719001"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 474], ["created_at", "2021-10-27 23:39:20.720333"], ["updated_at", "2021-10-27 23:39:20.720333"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 474], ["created_at", "2021-10-27 23:39:20.721688"], ["updated_at", "2021-10-27 23:39:20.721688"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 476], ["created_at", "2021-10-27 23:39:20.723029"], ["updated_at", "2021-10-27 23:39:20.723029"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.729361"], ["updated_at", "2021-10-27 23:39:20.729361"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:20.730477"], ["updated_at", "2021-10-27 23:39:20.730477"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:20.731888"], ["updated_at", "2021-10-27 23:39:20.731888"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 477], ["created_at", "2021-10-27 23:39:20.733111"], ["updated_at", "2021-10-27 23:39:20.733111"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 477], ["created_at", "2021-10-27 23:39:20.734493"], ["updated_at", "2021-10-27 23:39:20.734493"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 479], ["created_at", "2021-10-27 23:39:20.735841"], ["updated_at", "2021-10-27 23:39:20.735841"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms) Started GET “/shelters?utf8=%E2%9C%93&search=RGV&commit=Search” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML
Parameters: {"utf8"=>"✓", "search"=>"RGV", "commit"=>"Search"}
Rendering shelters/index.html.erb within layouts/application
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%RGV%')[0m
Rendered shelters/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.748898"], ["updated_at", "2021-10-27 23:39:20.748898"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.750376"], ["updated_at", "2021-10-27 23:39:20.750376"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 480], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 480], ["created_at", "2021-10-27 23:39:20.751965"], ["updated_at", "2021-10-27 23:39:20.751965"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 480], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 480], ["created_at", "2021-10-27 23:39:20.753559"], ["updated_at", "2021-10-27 23:39:20.753559"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 481], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 481], ["created_at", "2021-10-27 23:39:20.755441"], ["updated_at", "2021-10-27 23:39:20.755441"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 480], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 480], ["created_at", "2021-10-27 23:39:20.756929"], ["updated_at", "2021-10-27 23:39:20.756929"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/480/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"480"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 480], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 480], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.3ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.773145"], ["updated_at", "2021-10-27 23:39:20.773145"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.774230"], ["updated_at", "2021-10-27 23:39:20.774230"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 482], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 482], ["created_at", "2021-10-27 23:39:20.775521"], ["updated_at", "2021-10-27 23:39:20.775521"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 482], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 482], ["created_at", "2021-10-27 23:39:20.776744"], ["updated_at", "2021-10-27 23:39:20.776744"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 483], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 483], ["created_at", "2021-10-27 23:39:20.778267"], ["updated_at", "2021-10-27 23:39:20.778267"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 482], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 482], ["created_at", "2021-10-27 23:39:20.779978"], ["updated_at", "2021-10-27 23:39:20.779978"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/482/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"482"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 482], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.5ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 482], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.6ms) Started GET “/shelters/482/pets/new” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#new as HTML
Parameters: {"shelter_id"=>"482"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 482], ["LIMIT", 1]]
Rendering pets/new.html.erb within layouts/application
Rendered pets/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.791017"], ["updated_at", "2021-10-27 23:39:20.791017"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.792042"], ["updated_at", "2021-10-27 23:39:20.792042"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 484], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 484], ["created_at", "2021-10-27 23:39:20.793394"], ["updated_at", "2021-10-27 23:39:20.793394"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 484], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 484], ["created_at", "2021-10-27 23:39:20.794993"], ["updated_at", "2021-10-27 23:39:20.794993"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 485], ["LIMIT", 1]]
[1m[36mPet Create (1.0ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 485], ["created_at", "2021-10-27 23:39:20.796951"], ["updated_at", "2021-10-27 23:39:20.796951"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 484], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 484], ["created_at", "2021-10-27 23:39:20.799039"], ["updated_at", "2021-10-27 23:39:20.799039"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/484/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"484"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 484], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 484], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms) Started GET “/pets/600/edit” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#edit as HTML
Parameters: {"id"=>"600"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 600], ["LIMIT", 1]]
Rendering pets/edit.html.erb within layouts/application
Rendered pets/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.809562"], ["updated_at", "2021-10-27 23:39:20.809562"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.810852"], ["updated_at", "2021-10-27 23:39:20.810852"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 486], ["LIMIT", 1]]
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 486], ["created_at", "2021-10-27 23:39:20.812648"], ["updated_at", "2021-10-27 23:39:20.812648"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 486], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 486], ["created_at", "2021-10-27 23:39:20.814454"], ["updated_at", "2021-10-27 23:39:20.814454"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 487], ["LIMIT", 1]]
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 487], ["created_at", "2021-10-27 23:39:20.816290"], ["updated_at", "2021-10-27 23:39:20.816290"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 486], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 486], ["created_at", "2021-10-27 23:39:20.817900"], ["updated_at", "2021-10-27 23:39:20.817900"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/486/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"486"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 486], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 486], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)
Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.6ms) Started DELETE “/pets/604” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#destroy as HTML
Parameters: {"id"=>"604"}
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 604], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Destroy (0.5ms)[0m [1m[31mDELETE FROM "pets" WHERE "pets"."id" = $1[0m [["id", 604]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/pets Completed 302 Found in 1ms (ActiveRecord: 0.8ms) Started GET “/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by PetsController#index as HTML
Rendering pets/index.html.erb within layouts/application [1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]] [1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 486], ["LIMIT", 1]] [1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 487], ["LIMIT", 1]] [1m[36mCACHE Shelter Load (0.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 486], ["LIMIT", 1]] Rendered pets/index.html.erb within layouts/application (1.6ms)
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.4ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.832170"], ["updated_at", "2021-10-27 23:39:20.832170"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.833442"], ["updated_at", "2021-10-27 23:39:20.833442"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 488], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 488], ["created_at", "2021-10-27 23:39:20.834885"], ["updated_at", "2021-10-27 23:39:20.834885"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 488], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 488], ["created_at", "2021-10-27 23:39:20.836331"], ["updated_at", "2021-10-27 23:39:20.836331"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 489], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 489], ["created_at", "2021-10-27 23:39:20.837850"], ["updated_at", "2021-10-27 23:39:20.837850"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 488], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 488], ["created_at", "2021-10-27 23:39:20.839209"], ["updated_at", "2021-10-27 23:39:20.839209"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/488/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"488"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 488], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 488], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.6ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.9ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.846161"], ["updated_at", "2021-10-27 23:39:20.846161"]]
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.847991"], ["updated_at", "2021-10-27 23:39:20.847991"]]
[1m[35m (0.5ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 490], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 490], ["created_at", "2021-10-27 23:39:20.850262"], ["updated_at", "2021-10-27 23:39:20.850262"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 490], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 490], ["created_at", "2021-10-27 23:39:20.851877"], ["updated_at", "2021-10-27 23:39:20.851877"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 491], ["LIMIT", 1]]
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 491], ["created_at", "2021-10-27 23:39:20.853426"], ["updated_at", "2021-10-27 23:39:20.853426"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 490], ["LIMIT", 1]]
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 490], ["created_at", "2021-10-27 23:39:20.854907"], ["updated_at", "2021-10-27 23:39:20.854907"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/490/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"490"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 490], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 490], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started GET “/shelters/490/pets?utf8=%E2%9C%93&age=3&commit=Filter” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#pets as HTML
Parameters: {"utf8"=>"✓", "age"=>"3", "commit"=>"Filter", "shelter_id"=>"490"}
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 490], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= '3')[0m [["shelter_id", 490], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.4ms)
Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 1.0ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.868263"], ["updated_at", "2021-10-27 23:39:20.868263"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Boulder shelter"], ["city", "Boulder, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.869670"], ["updated_at", "2021-10-27 23:39:20.869670"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 492], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "sphynx"], ["name", "Bare-y Manilow"], ["shelter_id", 492], ["created_at", "2021-10-27 23:39:20.871649"], ["updated_at", "2021-10-27 23:39:20.871649"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 492], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "doberman"], ["name", "Lobster"], ["shelter_id", 492], ["created_at", "2021-10-27 23:39:20.872960"], ["updated_at", "2021-10-27 23:39:20.872960"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 493], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "domestic shorthair"], ["name", "Sylvester"], ["shelter_id", 493], ["created_at", "2021-10-27 23:39:20.874184"], ["updated_at", "2021-10-27 23:39:20.874184"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 492], ["LIMIT", 1]]
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "orange tabby shorthair"], ["name", "Lasagna"], ["shelter_id", 492], ["created_at", "2021-10-27 23:39:20.875357"], ["updated_at", "2021-10-27 23:39:20.875357"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/492/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"492"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 492], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 492], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms) Started GET “/shelters/492/pets?sort=alphabetical” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#pets as HTML
Parameters: {"sort"=>"alphabetical", "shelter_id"=>"492"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 492], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC[0m [["shelter_id", 492], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.6ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.887864"], ["updated_at", "2021-10-27 23:39:20.887864"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/494” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#show as HTML
Parameters: {"id"=>"494"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 494], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 494]]
Rendered shelters/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.5ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.8ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.894997"], ["updated_at", "2021-10-27 23:39:20.894997"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "shorthair"], ["name", "garfield"], ["shelter_id", 495], ["created_at", "2021-10-27 23:39:20.896754"], ["updated_at", "2021-10-27 23:39:20.896754"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/495” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#show as HTML
Parameters: {"id"=>"495"}
[1m[36mShelter Load (0.6ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 495], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 495]]
Rendered shelters/show.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 1.1ms)
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 495]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.903626"], ["updated_at", "2021-10-27 23:39:20.903626"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/496” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#show as HTML
Parameters: {"id"=>"496"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 496], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 496]]
Rendered shelters/show.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms) Started DELETE “/shelters/496” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#destroy as HTML
Parameters: {"id"=>"496"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 496], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 496]]
[1m[36mShelter Destroy (0.7ms)[0m [1m[31mDELETE FROM "shelters" WHERE "shelters"."id" = $1[0m [["id", 496]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 1.3ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.915447"], ["updated_at", "2021-10-27 23:39:20.915447"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/497” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#show as HTML
Parameters: {"id"=>"497"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 497], ["LIMIT", 1]]
Rendering shelters/show.html.erb within layouts/application
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 497]]
Rendered shelters/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.6ms) Started GET “/shelters/497/pets” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#pets as HTML
Parameters: {"shelter_id"=>"497"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 497], ["LIMIT", 1]]
Rendering shelters/pets.html.erb within layouts/application
[1m[36mPet Load (0.1ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 497], ["adoptable", true]]
Rendered shelters/pets.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.924464"], ["updated_at", "2021-10-27 23:39:20.924464"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/498/edit” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#edit as HTML
Parameters: {"id"=>"498"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 498], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.6ms)
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.932845"], ["updated_at", "2021-10-27 23:39:20.932845"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/499/edit” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#edit as HTML
Parameters: {"id"=>"499"}
[1m[36mShelter Load (0.1ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 499], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms) Started PATCH “/shelters/499” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"Wichita Shelter", "city"=>"Wichita", "foster_program"=>"0", "rank"=>"10", "commit"=>"Save ", "id"=>"499"}
Unpermitted parameters: :utf8, :_method, :commit
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 499], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mShelter Update (0.5ms)[0m [1m[33mUPDATE "shelters" SET "name" = $1, "city" = $2, "rank" = $3, "updated_at" = $4 WHERE "shelters"."id" = $5[0m [["name", "Wichita Shelter"], ["city", "Wichita"], ["rank", 10], ["updated_at", "2021-10-27 23:39:20.942230"], ["id", 499]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters Completed 302 Found in 2ms (ActiveRecord: 0.9ms) Started GET “/shelters” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#index as HTML
Rendering shelters/index.html.erb within layouts/application [1m[36mShelter Load (0.6ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m Rendered shelters/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.6ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:20.949373"], ["updated_at", "2021-10-27 23:39:20.949373"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/shelters/500/edit” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#edit as HTML
Parameters: {"id"=>"500"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 500], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started PATCH “/shelters/500” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "city"=>"Wichita", "foster_program"=>"0", "rank"=>"", "commit"=>"Save ", "id"=>"500"}
Unpermitted parameters: :utf8, :_method, :commit
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 500], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/shelters/500/edit Completed 302 Found in 2ms (ActiveRecord: 0.4ms) Started GET “/shelters/500/edit” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by SheltersController#edit as HTML
Parameters: {"id"=>"500"}
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" = $1 LIMIT $2[0m [["id", 500], ["LIMIT", 1]]
Rendering shelters/edit.html.erb within layouts/application
Rendered shelters/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.7ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:20.975820"], ["updated_at", "2021-10-27 23:39:20.975820"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/79/veterinarians/new” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"79"}
[1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 79], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (1.0ms)
Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:20.985032"], ["updated_at", "2021-10-27 23:39:20.985032"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/80/veterinarians/new” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"80"}
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 80], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.4ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.3ms) Started POST “/veterinary_offices/80/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:20 -0600 Processing by VeterinariansController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"Dr. Burstyn", "review_rating"=>"10", "on_call"=>"1", "commit"=>"Save ", "veterinary_office_id"=>"80"}
Unpermitted parameters: :utf8, :commit
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 80], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 80], ["LIMIT", 1]]
[1m[36mVeterinarian Create (1.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Dr. Burstyn"], ["veterinary_office_id", 80], ["created_at", "2021-10-27 23:39:21.008116"], ["updated_at", "2021-10-27 23:39:21.008116"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices/80/veterinarians Completed 302 Found in 17ms (ActiveRecord: 11.7ms) Started GET “/veterinary_offices/80/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"80"}
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 80], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.5ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 80], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (2.1ms)
Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 0.8ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.018476"], ["updated_at", "2021-10-27 23:39:21.018476"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/81/veterinarians/new” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"81"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 81], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started POST “/veterinary_offices/81/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "review_rating"=>"", "on_call"=>"0", "commit"=>"Save ", "veterinary_office_id"=>"81"}
Unpermitted parameters: :utf8, :commit
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 81], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 81], ["LIMIT", 1]] [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices/81/veterinarians/new Completed 302 Found in 3ms (ActiveRecord: 0.7ms) Started GET “/veterinary_offices/81/veterinarians/new” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"81"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 81], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.4ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.033910"], ["updated_at", "2021-10-27 23:39:21.033910"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 82], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 82], ["created_at", "2021-10-27 23:39:21.035633"], ["updated_at", "2021-10-27 23:39:21.035633"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 82], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 82], ["created_at", "2021-10-27 23:39:21.037456"], ["updated_at", "2021-10-27 23:39:21.037456"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 82], ["LIMIT", 1]] [1m[36mCACHE VeterinaryOffice Load (0.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 82], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.3ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.046245"], ["updated_at", "2021-10-27 23:39:21.046245"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 83], ["LIMIT", 1]]
[1m[36mVeterinarian Create (1.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 83], ["created_at", "2021-10-27 23:39:21.048436"], ["updated_at", "2021-10-27 23:39:21.048436"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 83], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 83], ["created_at", "2021-10-27 23:39:21.050768"], ["updated_at", "2021-10-27 23:39:21.050768"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 83], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.056596"], ["updated_at", "2021-10-27 23:39:21.056596"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 84], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 84], ["created_at", "2021-10-27 23:39:21.057921"], ["updated_at", "2021-10-27 23:39:21.057921"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 84], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 84], ["created_at", "2021-10-27 23:39:21.059596"], ["updated_at", "2021-10-27 23:39:21.059596"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 84], ["LIMIT", 1]] [1m[36mCACHE VeterinaryOffice Load (0.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 84], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.5ms) Started GET “/veterinarians/142/edit” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"142"}
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 142], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.8ms)
Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.070469"], ["updated_at", "2021-10-27 23:39:21.070469"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 85], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 85], ["created_at", "2021-10-27 23:39:21.072412"], ["updated_at", "2021-10-27 23:39:21.072412"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 85], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 85], ["created_at", "2021-10-27 23:39:21.074049"], ["updated_at", "2021-10-27 23:39:21.074049"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 85], ["LIMIT", 1]] [1m[36mCACHE VeterinaryOffice Load (0.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 85], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (1.2ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms) Started DELETE “/veterinarians/144” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#destroy as HTML
Parameters: {"id"=>"144"}
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 144], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Destroy (0.2ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 144]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.7ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 85], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (0.8ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.085954"], ["updated_at", "2021-10-27 23:39:21.085954"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 86], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 86], ["created_at", "2021-10-27 23:39:21.087619"], ["updated_at", "2021-10-27 23:39:21.087619"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/146” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#show as HTML
Parameters: {"id"=>"146"}
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 146], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 86], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.094795"], ["updated_at", "2021-10-27 23:39:21.094795"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 87], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 87], ["created_at", "2021-10-27 23:39:21.096490"], ["updated_at", "2021-10-27 23:39:21.096490"]]
[1m[35m (0.9ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/147” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#show as HTML
Parameters: {"id"=>"147"}
[1m[36mVeterinarian Load (0.6ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 147], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 87], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.7ms) Started DELETE “/veterinarians/147” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#destroy as HTML
Parameters: {"id"=>"147"}
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 147], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Destroy (0.3ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 147]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians Completed 302 Found in 1ms (ActiveRecord: 0.8ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.1ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] Rendered veterinarians/index.html.erb within layouts/application (0.3ms)
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 23:39:21.108301"], ["updated_at", "2021-10-27 23:39:21.108301"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 88], ["created_at", "2021-10-27 23:39:21.109758"], ["updated_at", "2021-10-27 23:39:21.109758"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/148/edit” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"148"}
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 148], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 23:39:21.116684"], ["updated_at", "2021-10-27 23:39:21.116684"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 89], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 89], ["created_at", "2021-10-27 23:39:21.118581"], ["updated_at", "2021-10-27 23:39:21.118581"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/149/edit” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"149"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 149], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms) Started PATCH “/veterinarians/149” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"Ignacio", "on_call"=>"0", "review_rating"=>"10", "commit"=>"Save ", "id"=>"149"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 149], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 89], ["LIMIT", 1]] [1m[36mVeterinarian Update (1.8ms)[0m [1m[33mUPDATE "veterinarians" SET "name" = $1, "on_call" = $2, "review_rating" = $3, "updated_at" = $4 WHERE "veterinarians"."id" = $5[0m [["name", "Ignacio"], ["on_call", false], ["review_rating", 10], ["updated_at", "2021-10-27 23:39:21.130768"], ["id", 149]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians/149 Completed 302 Found in 4ms (ActiveRecord: 2.5ms) Started GET “/veterinarians/149” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#show as HTML
Parameters: {"id"=>"149"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 149], ["LIMIT", 1]]
Rendering veterinarians/show.html.erb within layouts/application
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 89], ["LIMIT", 1]]
Rendered veterinarians/show.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 5], ["name", "Put a bird on it"], ["created_at", "2021-10-27 23:39:21.138123"], ["updated_at", "2021-10-27 23:39:21.138123"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 90], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Kelsey"], ["veterinary_office_id", 90], ["created_at", "2021-10-27 23:39:21.139542"], ["updated_at", "2021-10-27 23:39:21.139542"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinarians/150/edit” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"150"}
[1m[36mVeterinarian Load (0.1ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 150], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms) Started PATCH “/veterinarians/150” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "on_call"=>"0", "review_rating"=>"", "commit"=>"Save ", "id"=>"150"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 150], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mVeterinaryOffice Load (0.5ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 90], ["LIMIT", 1]] [1m[35m (0.2ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians/150/edit Completed 302 Found in 3ms (ActiveRecord: 1.0ms) Started GET “/veterinarians/150/edit” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"150"}
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 150], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#new as HTML
Rendering veterinary_offices/new.html.erb within layouts/application Rendered veterinary_offices/new.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#new as HTML
Rendering veterinary_offices/new.html.erb within layouts/application Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms) Started POST “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"Houston Vet Office", "boarding_services"=>"0", "max_patient_capacity"=>"75", "commit"=>"Save "}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", false], ["max_patient_capacity", 75], ["name", "Houston Vet Office"], ["created_at", "2021-10-27 23:39:21.166189"], ["updated_at", "2021-10-27 23:39:21.166189"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 0.6ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.6ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.3ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m [1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#new as HTML
Rendering veterinary_offices/new.html.erb within layouts/application Rendered veterinary_offices/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Started POST “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#create as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "boarding_services"=>"0", "max_patient_capacity"=>"", "commit"=>"Save "}
Unpermitted parameters: :utf8, :commit
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices/new Completed 302 Found in 2ms (ActiveRecord: 0.2ms) Started GET “/veterinary_offices/new” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#new as HTML
Rendering veterinary_offices/new.html.erb within layouts/application Rendered veterinary_offices/new.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 23:39:21.183527"], ["updated_at", "2021-10-27 23:39:21.183527"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 23:39:21.184768"], ["updated_at", "2021-10-27 23:39:21.184768"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:39:21.185708"], ["updated_at", "2021-10-27 23:39:21.185708"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 92], ["created_at", "2021-10-27 23:39:21.186918"], ["updated_at", "2021-10-27 23:39:21.186918"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 92], ["created_at", "2021-10-27 23:39:21.188246"], ["updated_at", "2021-10-27 23:39:21.188246"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 94], ["created_at", "2021-10-27 23:39:21.189596"], ["updated_at", "2021-10-27 23:39:21.189596"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.6ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 23:39:21.196446"], ["updated_at", "2021-10-27 23:39:21.196446"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 23:39:21.197859"], ["updated_at", "2021-10-27 23:39:21.197859"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.6ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:39:21.199067"], ["updated_at", "2021-10-27 23:39:21.199067"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 95], ["created_at", "2021-10-27 23:39:21.200633"], ["updated_at", "2021-10-27 23:39:21.200633"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 95], ["created_at", "2021-10-27 23:39:21.201897"], ["updated_at", "2021-10-27 23:39:21.201897"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 97], ["created_at", "2021-10-27 23:39:21.202960"], ["updated_at", "2021-10-27 23:39:21.202960"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 23:39:21.210130"], ["updated_at", "2021-10-27 23:39:21.210130"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.7ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 23:39:21.211315"], ["updated_at", "2021-10-27 23:39:21.211315"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:39:21.212650"], ["updated_at", "2021-10-27 23:39:21.212650"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (1.1ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 98], ["created_at", "2021-10-27 23:39:21.214043"], ["updated_at", "2021-10-27 23:39:21.214043"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 98], ["created_at", "2021-10-27 23:39:21.216077"], ["updated_at", "2021-10-27 23:39:21.216077"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 100], ["created_at", "2021-10-27 23:39:21.217352"], ["updated_at", "2021-10-27 23:39:21.217352"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.3ms) Started GET “/veterinary_offices?sort=veterinarian_count” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#index as HTML
Parameters: {"sort"=>"veterinarian_count"}
Rendering veterinary_offices/index.html.erb within layouts/application
[1m[36mVeterinaryOffice Load (1.2ms)[0m [1m[34mSELECT veterinary_offices.*, count(veterinarians.id) AS vets_count FROM "veterinary_offices" LEFT OUTER JOIN veterinarians ON veterinarians.veterinary_office_id = veterinary_offices.id GROUP BY veterinary_offices.id ORDER BY vets_count DESC[0m
Rendered veterinary_offices/index.html.erb within layouts/application (1.7ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 1.2ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 23:39:21.227466"], ["updated_at", "2021-10-27 23:39:21.227466"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 23:39:21.228716"], ["updated_at", "2021-10-27 23:39:21.228716"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:39:21.229894"], ["updated_at", "2021-10-27 23:39:21.229894"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.8ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 101], ["created_at", "2021-10-27 23:39:21.231421"], ["updated_at", "2021-10-27 23:39:21.231421"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 101], ["created_at", "2021-10-27 23:39:21.233131"], ["updated_at", "2021-10-27 23:39:21.233131"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 103], ["created_at", "2021-10-27 23:39:21.234531"], ["updated_at", "2021-10-27 23:39:21.234531"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/101/edit” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"101"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 101], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.6ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 100], ["name", "Special Friends"], ["created_at", "2021-10-27 23:39:21.245304"], ["updated_at", "2021-10-27 23:39:21.245304"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.6ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 50], ["name", "Pet Emergency Room"], ["created_at", "2021-10-27 23:39:21.246723"], ["updated_at", "2021-10-27 23:39:21.246723"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:39:21.248250"], ["updated_at", "2021-10-27 23:39:21.248250"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Morgan"], ["veterinary_office_id", 104], ["created_at", "2021-10-27 23:39:21.249742"], ["updated_at", "2021-10-27 23:39:21.249742"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Heather"], ["veterinary_office_id", 104], ["created_at", "2021-10-27 23:39:21.250853"], ["updated_at", "2021-10-27 23:39:21.250853"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "John"], ["veterinary_office_id", 106], ["created_at", "2021-10-27 23:39:21.251893"], ["updated_at", "2021-10-27 23:39:21.251893"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.4ms) Started DELETE “/veterinary_offices/104” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#destroy as HTML
Parameters: {"id"=>"104"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 104], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 104]]
[1m[36mVeterinarian Destroy (0.4ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 163]]
[1m[36mVeterinarian Destroy (0.3ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 164]]
[1m[36mVeterinaryOffice Destroy (0.9ms)[0m [1m[31mDELETE FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1[0m [["id", 104]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices Completed 302 Found in 4ms (ActiveRecord: 2.4ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.5ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.5ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:39:21.268367"], ["updated_at", "2021-10-27 23:39:21.268367"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/107” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#show as HTML
Parameters: {"id"=>"107"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 107], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 107]]
Rendered veterinary_offices/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.5ms)
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 200], ["name", "The Country Vet"], ["created_at", "2021-10-27 23:39:21.274796"], ["updated_at", "2021-10-27 23:39:21.274796"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/108” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#show as HTML
Parameters: {"id"=>"108"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 108], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 108]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.7ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.6ms)
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 108]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 90], ["name", "Aurora vet"], ["created_at", "2021-10-27 23:39:21.281098"], ["updated_at", "2021-10-27 23:39:21.281098"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/109” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#show as HTML
Parameters: {"id"=>"109"}
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 109], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
[1m[35m (0.4ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 109]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.5ms) Started DELETE “/veterinary_offices/109” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#destroy as HTML
Parameters: {"id"=>"109"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 109], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 109]]
[1m[36mVeterinaryOffice Destroy (0.7ms)[0m [1m[31mDELETE FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1[0m [["id", 109]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices Completed 302 Found in 2ms (ActiveRecord: 1.4ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.4ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 90], ["name", "Aurora vet"], ["created_at", "2021-10-27 23:39:21.293020"], ["updated_at", "2021-10-27 23:39:21.293020"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/110” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#show as HTML
Parameters: {"id"=>"110"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 110], ["LIMIT", 1]]
Rendering veterinary_offices/show.html.erb within layouts/application
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 110]]
Rendered veterinary_offices/show.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.7ms) Started GET “/veterinary_offices/110/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"110"}
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 110], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 110], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.6ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 23:39:21.304336"], ["updated_at", "2021-10-27 23:39:21.304336"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/111/edit” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"111"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 111], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 23:39:21.310042"], ["updated_at", "2021-10-27 23:39:21.310042"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/112/edit” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"112"}
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 112], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.4ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.3ms) Started PATCH “/veterinary_offices/112” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"Wichita vet office", "boarding_services"=>"0", "max_patient_capacity"=>"10", "commit"=>"Save ", "id"=>"112"}
[1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 112], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit, :id
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[36mVeterinaryOffice Update (0.6ms)[0m [1m[33mUPDATE "veterinary_offices" SET "name" = $1, "max_patient_capacity" = $2, "updated_at" = $3 WHERE "veterinary_offices"."id" = $4[0m [["name", "Wichita vet office"], ["max_patient_capacity", 10], ["updated_at", "2021-10-27 23:39:21.319451"], ["id", 112]] [1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices Completed 302 Found in 3ms (ActiveRecord: 1.3ms) Started GET “/veterinary_offices” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#index as HTML
Rendering veterinary_offices/index.html.erb within layouts/application [1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m Rendered veterinary_offices/index.html.erb within layouts/application (0.7ms)
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", false], ["max_patient_capacity", 9], ["name", "Aurora vet office"], ["created_at", "2021-10-27 23:39:21.326269"], ["updated_at", "2021-10-27 23:39:21.326269"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/113/edit” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"113"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 113], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.2ms) Started PATCH “/veterinary_offices/113” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#update as HTML
Parameters: {"utf8"=>"✓", "name"=>"", "boarding_services"=>"0", "max_patient_capacity"=>"", "commit"=>"Save ", "id"=>"113"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 113], ["LIMIT", 1]]
Unpermitted parameters: :utf8, :_method, :commit, :id
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m [1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinary_offices/113/edit Completed 302 Found in 2ms (ActiveRecord: 0.5ms) Started GET “/veterinary_offices/113/edit” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#edit as HTML
Parameters: {"id"=>"113"}
[1m[36mVeterinaryOffice Load (2.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 113], ["LIMIT", 1]]
Rendering veterinary_offices/edit.html.erb within layouts/application
Rendered veterinary_offices/edit.html.erb within layouts/application (0.5ms)
Completed 200 OK in 4ms (Views: 1.0ms | ActiveRecord: 2.4ms)
[1m[35m (21.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (2.3ms)[0m [1m[35mBEGIN[0m
[1m[35m (8.6ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (28.9ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.377634"], ["updated_at", "2021-10-27 23:39:21.377634"]]
[1m[35m (16.9ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.4ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (45.7ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:21.424639"], ["updated_at", "2021-10-27 23:39:21.424639"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 114], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 114], ["created_at", "2021-10-27 23:39:21.472608"], ["updated_at", "2021-10-27 23:39:21.472608"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 114], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 114], ["created_at", "2021-10-27 23:39:21.474938"], ["updated_at", "2021-10-27 23:39:21.474938"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.8ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 114], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 114], ["created_at", "2021-10-27 23:39:21.477940"], ["updated_at", "2021-10-27 23:39:21.477940"]]
[1m[35m (3.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 115], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 115], ["created_at", "2021-10-27 23:39:21.483364"], ["updated_at", "2021-10-27 23:39:21.483364"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 115], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 115], ["created_at", "2021-10-27 23:39:21.485625"], ["updated_at", "2021-10-27 23:39:21.485625"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/114/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"114"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 114], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 114], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.8ms)
Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.7ms)
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.499686"], ["updated_at", "2021-10-27 23:39:21.499686"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:21.501224"], ["updated_at", "2021-10-27 23:39:21.501224"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 116], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 116], ["created_at", "2021-10-27 23:39:21.503175"], ["updated_at", "2021-10-27 23:39:21.503175"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 116], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 116], ["created_at", "2021-10-27 23:39:21.505612"], ["updated_at", "2021-10-27 23:39:21.505612"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 116], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 116], ["created_at", "2021-10-27 23:39:21.507879"], ["updated_at", "2021-10-27 23:39:21.507879"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 117], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 117], ["created_at", "2021-10-27 23:39:21.510048"], ["updated_at", "2021-10-27 23:39:21.510048"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 117], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 117], ["created_at", "2021-10-27 23:39:21.512200"], ["updated_at", "2021-10-27 23:39:21.512200"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/116/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"116"}
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 116], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.7ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 116], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.9ms)
Completed 200 OK in 4ms (Views: 2.1ms | ActiveRecord: 1.0ms) Started GET “/veterinarians/172/edit” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#edit as HTML
Parameters: {"id"=>"172"}
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 172], ["LIMIT", 1]]
Rendering veterinarians/edit.html.erb within layouts/application
Rendered veterinarians/edit.html.erb within layouts/application (0.8ms)
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.6ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.527536"], ["updated_at", "2021-10-27 23:39:21.527536"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.6ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:21.529195"], ["updated_at", "2021-10-27 23:39:21.529195"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 118], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 118], ["created_at", "2021-10-27 23:39:21.531919"], ["updated_at", "2021-10-27 23:39:21.531919"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 118], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 118], ["created_at", "2021-10-27 23:39:21.533843"], ["updated_at", "2021-10-27 23:39:21.533843"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 118], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 118], ["created_at", "2021-10-27 23:39:21.535496"], ["updated_at", "2021-10-27 23:39:21.535496"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 119], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 119], ["created_at", "2021-10-27 23:39:21.537220"], ["updated_at", "2021-10-27 23:39:21.537220"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 119], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 119], ["created_at", "2021-10-27 23:39:21.539208"], ["updated_at", "2021-10-27 23:39:21.539208"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/118/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"118"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 118], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.5ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 118], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.5ms)
Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.6ms) Started DELETE “/veterinarians/177” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#destroy as HTML
Parameters: {"id"=>"177"}
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."id" = $1 LIMIT $2[0m [["id", 177], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Destroy (0.3ms)[0m [1m[31mDELETE FROM "veterinarians" WHERE "veterinarians"."id" = $1[0m [["id", 177]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Redirected to www.example.com/veterinarians Completed 302 Found in 2ms (ActiveRecord: 0.8ms) Started GET “/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#index as HTML
Rendering veterinarians/index.html.erb within layouts/application [1m[36mVeterinarian Load (0.1ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]] [1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 118], ["LIMIT", 1]] [1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 119], ["LIMIT", 1]] [1m[36mCACHE VeterinaryOffice Load (0.0ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 119], ["LIMIT", 1]] Rendered veterinarians/index.html.erb within layouts/application (2.0ms)
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.4ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.5ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.557475"], ["updated_at", "2021-10-27 23:39:21.557475"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:21.558904"], ["updated_at", "2021-10-27 23:39:21.558904"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 120], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 120], ["created_at", "2021-10-27 23:39:21.560668"], ["updated_at", "2021-10-27 23:39:21.560668"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 120], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 120], ["created_at", "2021-10-27 23:39:21.562508"], ["updated_at", "2021-10-27 23:39:21.562508"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 120], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 120], ["created_at", "2021-10-27 23:39:21.564497"], ["updated_at", "2021-10-27 23:39:21.564497"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 121], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 121], ["created_at", "2021-10-27 23:39:21.566376"], ["updated_at", "2021-10-27 23:39:21.566376"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 121], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 121], ["created_at", "2021-10-27 23:39:21.567857"], ["updated_at", "2021-10-27 23:39:21.567857"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/120/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"120"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 120], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.5ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 120], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.4ms)
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.7ms) Started GET “/veterinary_offices/120/veterinarians/new” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinariansController#new as HTML
Parameters: {"veterinary_office_id"=>"120"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 120], ["LIMIT", 1]]
Rendering veterinarians/new.html.erb within layouts/application
Rendered veterinarians/new.html.erb within layouts/application (0.5ms)
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.6ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.580146"], ["updated_at", "2021-10-27 23:39:21.580146"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:21.582004"], ["updated_at", "2021-10-27 23:39:21.582004"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 122], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 122], ["created_at", "2021-10-27 23:39:21.583613"], ["updated_at", "2021-10-27 23:39:21.583613"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 122], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 122], ["created_at", "2021-10-27 23:39:21.585247"], ["updated_at", "2021-10-27 23:39:21.585247"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 122], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 122], ["created_at", "2021-10-27 23:39:21.586968"], ["updated_at", "2021-10-27 23:39:21.586968"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 123], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 123], ["created_at", "2021-10-27 23:39:21.588616"], ["updated_at", "2021-10-27 23:39:21.588616"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 123], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 123], ["created_at", "2021-10-27 23:39:21.590264"], ["updated_at", "2021-10-27 23:39:21.590264"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/122/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"122"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 122], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 122], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms)
[1m[35m (0.6ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.8ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.599147"], ["updated_at", "2021-10-27 23:39:21.599147"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:21.600916"], ["updated_at", "2021-10-27 23:39:21.600916"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 124], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 124], ["created_at", "2021-10-27 23:39:21.602399"], ["updated_at", "2021-10-27 23:39:21.602399"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 124], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 124], ["created_at", "2021-10-27 23:39:21.603740"], ["updated_at", "2021-10-27 23:39:21.603740"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 124], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 124], ["created_at", "2021-10-27 23:39:21.605019"], ["updated_at", "2021-10-27 23:39:21.605019"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 125], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 125], ["created_at", "2021-10-27 23:39:21.606304"], ["updated_at", "2021-10-27 23:39:21.606304"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 125], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 125], ["created_at", "2021-10-27 23:39:21.607904"], ["updated_at", "2021-10-27 23:39:21.607904"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/124/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"124"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 124], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 124], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.0ms)
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/124/veterinarians?utf8=%E2%9C%93&review_rating=5&commit=Filter” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"utf8"=>"✓", "review_rating"=>"5", "commit"=>"Filter", "veterinary_office_id"=>"124"}
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 124], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 AND (review_rating >= '5')[0m [["veterinary_office_id", 124], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.1ms)
Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.7ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:21.622852"], ["updated_at", "2021-10-27 23:39:21.622852"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:21.624058"], ["updated_at", "2021-10-27 23:39:21.624058"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 126], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 126], ["created_at", "2021-10-27 23:39:21.625706"], ["updated_at", "2021-10-27 23:39:21.625706"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 126], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 126], ["created_at", "2021-10-27 23:39:21.627286"], ["updated_at", "2021-10-27 23:39:21.627286"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 126], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 126], ["created_at", "2021-10-27 23:39:21.629016"], ["updated_at", "2021-10-27 23:39:21.629016"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 127], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 127], ["created_at", "2021-10-27 23:39:21.630599"], ["updated_at", "2021-10-27 23:39:21.630599"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 127], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 2], ["name", "John"], ["veterinary_office_id", 127], ["created_at", "2021-10-27 23:39:21.631948"], ["updated_at", "2021-10-27 23:39:21.631948"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
Started GET “/veterinary_offices/127/veterinarians” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"veterinary_office_id"=>"127"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 127], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 127], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (0.9ms)
Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.4ms) Started GET “/veterinary_offices/127/veterinarians?sort=alphabetical” for 127.0.0.1 at 2021-10-27 17:39:21 -0600 Processing by VeterinaryOfficesController#veterinarians as HTML
Parameters: {"sort"=>"alphabetical", "veterinary_office_id"=>"127"}
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 127], ["LIMIT", 1]]
Rendering veterinary_offices/veterinarians.html.erb within layouts/application
[1m[36mVeterinarian Load (0.5ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 ORDER BY "veterinarians"."name" ASC[0m [["veterinary_office_id", 127], ["on_call", true]]
Rendered veterinary_offices/veterinarians.html.erb within layouts/application (1.5ms)
Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.7ms)
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (1.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (1.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:39:41.163399"], ["updated_at", "2021-10-27 23:39:41.163399"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 501], ["created_at", "2021-10-27 23:39:41.182782"], ["updated_at", "2021-10-27 23:39:41.182782"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 501], ["created_at", "2021-10-27 23:39:41.185362"], ["updated_at", "2021-10-27 23:39:41.185362"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 501], ["created_at", "2021-10-27 23:39:41.186675"], ["updated_at", "2021-10-27 23:39:41.186675"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.9ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:39:41.187868"], ["updated_at", "2021-10-27 23:39:41.187868"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (1.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 621], ["application_id", 72], ["created_at", "2021-10-27 23:39:41.192145"], ["updated_at", "2021-10-27 23:39:41.192145"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 622], ["application_id", 72], ["created_at", "2021-10-27 23:39:41.194724"], ["updated_at", "2021-10-27 23:39:41.194724"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (1.8ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 72)[0m
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" INNER JOIN "application_pets" ON "application_pets"."pet_id" = "pets"."id" WHERE (application_pets.application_id = 72)[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:39:41.204443"], ["updated_at", "2021-10-27 23:39:41.204443"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 502], ["created_at", "2021-10-27 23:39:41.205908"], ["updated_at", "2021-10-27 23:39:41.205908"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 502], ["created_at", "2021-10-27 23:39:41.207271"], ["updated_at", "2021-10-27 23:39:41.207271"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 502], ["created_at", "2021-10-27 23:39:41.208447"], ["updated_at", "2021-10-27 23:39:41.208447"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:39:41.209553"], ["updated_at", "2021-10-27 23:39:41.209553"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 624], ["application_id", 73], ["created_at", "2021-10-27 23:39:41.211157"], ["updated_at", "2021-10-27 23:39:41.211157"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.7ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 625], ["application_id", 73], ["created_at", "2021-10-27 23:39:41.212510"], ["updated_at", "2021-10-27 23:39:41.212510"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 73], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Rocky Mountain Dog Shelter"], ["city", "Denver"], ["rank", 1], ["created_at", "2021-10-27 23:39:41.216448"], ["updated_at", "2021-10-27 23:39:41.216448"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "Labrador Retriever"], ["name", "Bailey"], ["shelter_id", 503], ["created_at", "2021-10-27 23:39:41.217927"], ["updated_at", "2021-10-27 23:39:41.217927"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 1], ["breed", "French Bulldog"], ["name", "Bella"], ["shelter_id", 503], ["created_at", "2021-10-27 23:39:41.219228"], ["updated_at", "2021-10-27 23:39:41.219228"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 4], ["breed", "German Shepard"], ["name", "Max"], ["shelter_id", 503], ["created_at", "2021-10-27 23:39:41.220392"], ["updated_at", "2021-10-27 23:39:41.220392"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:39:41.221499"], ["updated_at", "2021-10-27 23:39:41.221499"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 627], ["application_id", 74], ["created_at", "2021-10-27 23:39:41.223129"], ["updated_at", "2021-10-27 23:39:41.223129"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplicationPet Create (0.5ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 628], ["application_id", 74], ["created_at", "2021-10-27 23:39:41.224492"], ["updated_at", "2021-10-27 23:39:41.224492"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 74], ["LIMIT", 1]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.227171"], ["updated_at", "2021-10-27 23:39:41.227171"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 504], ["created_at", "2021-10-27 23:39:41.228440"], ["updated_at", "2021-10-27 23:39:41.228440"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 504], ["created_at", "2021-10-27 23:39:41.229911"], ["updated_at", "2021-10-27 23:39:41.229911"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 504], ["created_at", "2021-10-27 23:39:41.231366"], ["updated_at", "2021-10-27 23:39:41.231366"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.235138"], ["updated_at", "2021-10-27 23:39:41.235138"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 505], ["created_at", "2021-10-27 23:39:41.236413"], ["updated_at", "2021-10-27 23:39:41.236413"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 505], ["created_at", "2021-10-27 23:39:41.237757"], ["updated_at", "2021-10-27 23:39:41.237757"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 505], ["created_at", "2021-10-27 23:39:41.238988"], ["updated_at", "2021-10-27 23:39:41.238988"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.240628"], ["updated_at", "2021-10-27 23:39:41.240628"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 506], ["created_at", "2021-10-27 23:39:41.242016"], ["updated_at", "2021-10-27 23:39:41.242016"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 506], ["created_at", "2021-10-27 23:39:41.243215"], ["updated_at", "2021-10-27 23:39:41.243215"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 506], ["created_at", "2021-10-27 23:39:41.244348"], ["updated_at", "2021-10-27 23:39:41.244348"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.247037"], ["updated_at", "2021-10-27 23:39:41.247037"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 507], ["created_at", "2021-10-27 23:39:41.248725"], ["updated_at", "2021-10-27 23:39:41.248725"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 507], ["created_at", "2021-10-27 23:39:41.250150"], ["updated_at", "2021-10-27 23:39:41.250150"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 507], ["created_at", "2021-10-27 23:39:41.251459"], ["updated_at", "2021-10-27 23:39:41.251459"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.257443"], ["updated_at", "2021-10-27 23:39:41.257443"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 508], ["created_at", "2021-10-27 23:39:41.259047"], ["updated_at", "2021-10-27 23:39:41.259047"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 508], ["created_at", "2021-10-27 23:39:41.260571"], ["updated_at", "2021-10-27 23:39:41.260571"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 508], ["created_at", "2021-10-27 23:39:41.262003"], ["updated_at", "2021-10-27 23:39:41.262003"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.266595"], ["updated_at", "2021-10-27 23:39:41.266595"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 509], ["created_at", "2021-10-27 23:39:41.268166"], ["updated_at", "2021-10-27 23:39:41.268166"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 509], ["created_at", "2021-10-27 23:39:41.269615"], ["updated_at", "2021-10-27 23:39:41.269615"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 509], ["created_at", "2021-10-27 23:39:41.270996"], ["updated_at", "2021-10-27 23:39:41.270996"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.274425"], ["updated_at", "2021-10-27 23:39:41.274425"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 510], ["created_at", "2021-10-27 23:39:41.275817"], ["updated_at", "2021-10-27 23:39:41.275817"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 510], ["created_at", "2021-10-27 23:39:41.277200"], ["updated_at", "2021-10-27 23:39:41.277200"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 510], ["created_at", "2021-10-27 23:39:41.278766"], ["updated_at", "2021-10-27 23:39:41.278766"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (1.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE (name ILIKE '%Claw%')[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.282918"], ["updated_at", "2021-10-27 23:39:41.282918"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 511], ["created_at", "2021-10-27 23:39:41.284291"], ["updated_at", "2021-10-27 23:39:41.284291"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 511], ["created_at", "2021-10-27 23:39:41.285593"], ["updated_at", "2021-10-27 23:39:41.285593"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 511], ["created_at", "2021-10-27 23:39:41.286805"], ["updated_at", "2021-10-27 23:39:41.286805"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.3ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."adoptable" = $1[0m [["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.289573"], ["updated_at", "2021-10-27 23:39:41.289573"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 512], ["created_at", "2021-10-27 23:39:41.290961"], ["updated_at", "2021-10-27 23:39:41.290961"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 512], ["created_at", "2021-10-27 23:39:41.292326"], ["updated_at", "2021-10-27 23:39:41.292326"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 3], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 512], ["created_at", "2021-10-27 23:39:41.293672"], ["updated_at", "2021-10-27 23:39:41.293672"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.7ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.296094"], ["updated_at", "2021-10-27 23:39:41.296094"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.297610"], ["updated_at", "2021-10-27 23:39:41.297610"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.298657"], ["updated_at", "2021-10-27 23:39:41.298657"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 513], ["created_at", "2021-10-27 23:39:41.300015"], ["updated_at", "2021-10-27 23:39:41.300015"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 513], ["created_at", "2021-10-27 23:39:41.301243"], ["updated_at", "2021-10-27 23:39:41.301243"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 515], ["created_at", "2021-10-27 23:39:41.302484"], ["updated_at", "2021-10-27 23:39:41.302484"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 513], ["created_at", "2021-10-27 23:39:41.303605"], ["updated_at", "2021-10-27 23:39:41.303605"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.305388"], ["updated_at", "2021-10-27 23:39:41.305388"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.306324"], ["updated_at", "2021-10-27 23:39:41.306324"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.307229"], ["updated_at", "2021-10-27 23:39:41.307229"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 516], ["created_at", "2021-10-27 23:39:41.308631"], ["updated_at", "2021-10-27 23:39:41.308631"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 516], ["created_at", "2021-10-27 23:39:41.309835"], ["updated_at", "2021-10-27 23:39:41.309835"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 518], ["created_at", "2021-10-27 23:39:41.311043"], ["updated_at", "2021-10-27 23:39:41.311043"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 516], ["created_at", "2021-10-27 23:39:41.312311"], ["updated_at", "2021-10-27 23:39:41.312311"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.324219"], ["updated_at", "2021-10-27 23:39:41.324219"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.325425"], ["updated_at", "2021-10-27 23:39:41.325425"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.326522"], ["updated_at", "2021-10-27 23:39:41.326522"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 519], ["created_at", "2021-10-27 23:39:41.327778"], ["updated_at", "2021-10-27 23:39:41.327778"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 519], ["created_at", "2021-10-27 23:39:41.329051"], ["updated_at", "2021-10-27 23:39:41.329051"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (1.0ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 521], ["created_at", "2021-10-27 23:39:41.330493"], ["updated_at", "2021-10-27 23:39:41.330493"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 519], ["created_at", "2021-10-27 23:39:41.332449"], ["updated_at", "2021-10-27 23:39:41.332449"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.337599"], ["updated_at", "2021-10-27 23:39:41.337599"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.338500"], ["updated_at", "2021-10-27 23:39:41.338500"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.339324"], ["updated_at", "2021-10-27 23:39:41.339324"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 522], ["created_at", "2021-10-27 23:39:41.340494"], ["updated_at", "2021-10-27 23:39:41.340494"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 522], ["created_at", "2021-10-27 23:39:41.341783"], ["updated_at", "2021-10-27 23:39:41.341783"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 524], ["created_at", "2021-10-27 23:39:41.343155"], ["updated_at", "2021-10-27 23:39:41.343155"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 522], ["created_at", "2021-10-27 23:39:41.344311"], ["updated_at", "2021-10-27 23:39:41.344311"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.349025"], ["updated_at", "2021-10-27 23:39:41.349025"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.350244"], ["updated_at", "2021-10-27 23:39:41.350244"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.351131"], ["updated_at", "2021-10-27 23:39:41.351131"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 525], ["created_at", "2021-10-27 23:39:41.352250"], ["updated_at", "2021-10-27 23:39:41.352250"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 525], ["created_at", "2021-10-27 23:39:41.353325"], ["updated_at", "2021-10-27 23:39:41.353325"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 527], ["created_at", "2021-10-27 23:39:41.354487"], ["updated_at", "2021-10-27 23:39:41.354487"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 525], ["created_at", "2021-10-27 23:39:41.355557"], ["updated_at", "2021-10-27 23:39:41.355557"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.358310"], ["updated_at", "2021-10-27 23:39:41.358310"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.359217"], ["updated_at", "2021-10-27 23:39:41.359217"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.360123"], ["updated_at", "2021-10-27 23:39:41.360123"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.6ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 528], ["created_at", "2021-10-27 23:39:41.361248"], ["updated_at", "2021-10-27 23:39:41.361248"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 528], ["created_at", "2021-10-27 23:39:41.362641"], ["updated_at", "2021-10-27 23:39:41.362641"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 530], ["created_at", "2021-10-27 23:39:41.364064"], ["updated_at", "2021-10-27 23:39:41.364064"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 528], ["created_at", "2021-10-27 23:39:41.365257"], ["updated_at", "2021-10-27 23:39:41.365257"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.2ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE (name ILIKE '%Fancy%')[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.367569"], ["updated_at", "2021-10-27 23:39:41.367569"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.368439"], ["updated_at", "2021-10-27 23:39:41.368439"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.369287"], ["updated_at", "2021-10-27 23:39:41.369287"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 531], ["created_at", "2021-10-27 23:39:41.370520"], ["updated_at", "2021-10-27 23:39:41.370520"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 531], ["created_at", "2021-10-27 23:39:41.371574"], ["updated_at", "2021-10-27 23:39:41.371574"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 533], ["created_at", "2021-10-27 23:39:41.372646"], ["updated_at", "2021-10-27 23:39:41.372646"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 531], ["created_at", "2021-10-27 23:39:41.373759"], ["updated_at", "2021-10-27 23:39:41.373759"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (1.0ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" ORDER BY "shelters"."created_at" DESC[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.376587"], ["updated_at", "2021-10-27 23:39:41.376587"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.377498"], ["updated_at", "2021-10-27 23:39:41.377498"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.378366"], ["updated_at", "2021-10-27 23:39:41.378366"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 534], ["created_at", "2021-10-27 23:39:41.379553"], ["updated_at", "2021-10-27 23:39:41.379553"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.7ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 534], ["created_at", "2021-10-27 23:39:41.380835"], ["updated_at", "2021-10-27 23:39:41.380835"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 536], ["created_at", "2021-10-27 23:39:41.382610"], ["updated_at", "2021-10-27 23:39:41.382610"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 534], ["created_at", "2021-10-27 23:39:41.383699"], ["updated_at", "2021-10-27 23:39:41.383699"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (1.0ms)[0m [1m[34mSELECT shelters.*, count(pets.id) AS pets_count FROM "shelters" LEFT OUTER JOIN pets ON pets.shelter_id = shelters.id GROUP BY shelters.id ORDER BY pets_count DESC[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.386787"], ["updated_at", "2021-10-27 23:39:41.386787"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.387639"], ["updated_at", "2021-10-27 23:39:41.387639"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.388514"], ["updated_at", "2021-10-27 23:39:41.388514"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 537], ["created_at", "2021-10-27 23:39:41.389582"], ["updated_at", "2021-10-27 23:39:41.389582"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 537], ["created_at", "2021-10-27 23:39:41.390659"], ["updated_at", "2021-10-27 23:39:41.390659"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 539], ["created_at", "2021-10-27 23:39:41.391800"], ["updated_at", "2021-10-27 23:39:41.391800"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 537], ["created_at", "2021-10-27 23:39:41.392870"], ["updated_at", "2021-10-27 23:39:41.392870"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mShelter Load (0.4ms)[0m [1m[34mSELECT * FROM shelters ORDER BY shelters.name desc[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.395014"], ["updated_at", "2021-10-27 23:39:41.395014"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.396006"], ["updated_at", "2021-10-27 23:39:41.396006"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.5ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.397087"], ["updated_at", "2021-10-27 23:39:41.397087"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 540], ["created_at", "2021-10-27 23:39:41.398906"], ["updated_at", "2021-10-27 23:39:41.398906"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 540], ["created_at", "2021-10-27 23:39:41.400071"], ["updated_at", "2021-10-27 23:39:41.400071"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 542], ["created_at", "2021-10-27 23:39:41.401269"], ["updated_at", "2021-10-27 23:39:41.401269"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 540], ["created_at", "2021-10-27 23:39:41.402324"], ["updated_at", "2021-10-27 23:39:41.402324"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.2ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Jacob Yarborough"], ["street_address", "123 Main Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80223"], ["application_status", "Pending"], ["why", "I love dogs"], ["created_at", "2021-10-27 23:39:41.403275"], ["updated_at", "2021-10-27 23:39:41.403275"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Create (0.3ms)[0m [1m[32mINSERT INTO "applications" ("applicant_name", "street_address", "city", "state", "zipcode", "application_status", "why", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id"[0m [["applicant_name", "Joe Smith"], ["street_address", "456 North Street"], ["city", "Denver"], ["state", "CO"], ["zipcode", "80202"], ["application_status", "Pending"], ["why", "I currently have two other dogs"], ["created_at", "2021-10-27 23:39:41.404204"], ["updated_at", "2021-10-27 23:39:41.404204"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 75], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 694], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.4ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 694], ["application_id", 75], ["created_at", "2021-10-27 23:39:41.406729"], ["updated_at", "2021-10-27 23:39:41.406729"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mApplication Load (0.2ms)[0m [1m[34mSELECT "applications".* FROM "applications" WHERE "applications"."id" = $1 LIMIT $2[0m [["id", 76], ["LIMIT", 1]]
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."id" = $1 LIMIT $2[0m [["id", 695], ["LIMIT", 1]]
[1m[36mApplicationPet Create (0.3ms)[0m [1m[32mINSERT INTO "application_pets" ("pet_id", "application_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["pet_id", 695], ["application_id", 76], ["created_at", "2021-10-27 23:39:41.408556"], ["updated_at", "2021-10-27 23:39:41.408556"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (1.1ms)[0m [1m[34mSELECT "shelter_id" FROM "applications" INNER JOIN "application_pets" ON "application_pets"."application_id" = "applications"."id" INNER JOIN "pets" ON "pets"."id" = "application_pets"."pet_id" WHERE "applications"."application_status" = $1[0m [["application_status", "Pending"]]
[1m[36mShelter Load (0.3ms)[0m [1m[34mSELECT "shelters".* FROM "shelters" WHERE "shelters"."id" IN ($1, $2)[0m [["id", 540], ["id", 542]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.412634"], ["updated_at", "2021-10-27 23:39:41.412634"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.413695"], ["updated_at", "2021-10-27 23:39:41.413695"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.414636"], ["updated_at", "2021-10-27 23:39:41.414636"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 543], ["created_at", "2021-10-27 23:39:41.415970"], ["updated_at", "2021-10-27 23:39:41.415970"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 543], ["created_at", "2021-10-27 23:39:41.417183"], ["updated_at", "2021-10-27 23:39:41.417183"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 545], ["created_at", "2021-10-27 23:39:41.418401"], ["updated_at", "2021-10-27 23:39:41.418401"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 543], ["created_at", "2021-10-27 23:39:41.419531"], ["updated_at", "2021-10-27 23:39:41.419531"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.2ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2[0m [["shelter_id", 543], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.421928"], ["updated_at", "2021-10-27 23:39:41.421928"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.422887"], ["updated_at", "2021-10-27 23:39:41.422887"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.423832"], ["updated_at", "2021-10-27 23:39:41.423832"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 546], ["created_at", "2021-10-27 23:39:41.425089"], ["updated_at", "2021-10-27 23:39:41.425089"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 546], ["created_at", "2021-10-27 23:39:41.426508"], ["updated_at", "2021-10-27 23:39:41.426508"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 548], ["created_at", "2021-10-27 23:39:41.427840"], ["updated_at", "2021-10-27 23:39:41.427840"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 546], ["created_at", "2021-10-27 23:39:41.429069"], ["updated_at", "2021-10-27 23:39:41.429069"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.4ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 ORDER BY "pets"."name" ASC[0m [["shelter_id", 546], ["adoptable", true]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.6ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.432336"], ["updated_at", "2021-10-27 23:39:41.432336"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.2ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.433718"], ["updated_at", "2021-10-27 23:39:41.433718"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.434621"], ["updated_at", "2021-10-27 23:39:41.434621"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 549], ["created_at", "2021-10-27 23:39:41.435884"], ["updated_at", "2021-10-27 23:39:41.435884"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 549], ["created_at", "2021-10-27 23:39:41.437183"], ["updated_at", "2021-10-27 23:39:41.437183"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 551], ["created_at", "2021-10-27 23:39:41.438456"], ["updated_at", "2021-10-27 23:39:41.438456"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.4ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 549], ["created_at", "2021-10-27 23:39:41.439640"], ["updated_at", "2021-10-27 23:39:41.439640"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mPet Load (0.7ms)[0m [1m[34mSELECT "pets".* FROM "pets" WHERE "pets"."shelter_id" = $1 AND "pets"."adoptable" = $2 AND (age >= 5)[0m [["shelter_id", 549], ["adoptable", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.4ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "Aurora shelter"], ["city", "Aurora, CO"], ["rank", 9], ["created_at", "2021-10-27 23:39:41.442735"], ["updated_at", "2021-10-27 23:39:41.442735"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", false], ["name", "RGV animal shelter"], ["city", "Harlingen, TX"], ["rank", 5], ["created_at", "2021-10-27 23:39:41.443844"], ["updated_at", "2021-10-27 23:39:41.443844"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mShelter Create (0.3ms)[0m [1m[32mINSERT INTO "shelters" ("foster_program", "name", "city", "rank", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["foster_program", true], ["name", "Fancy pets of Colorado"], ["city", "Denver, CO"], ["rank", 10], ["created_at", "2021-10-27 23:39:41.444850"], ["updated_at", "2021-10-27 23:39:41.444850"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.9ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", false], ["age", 5], ["breed", "tuxedo shorthair"], ["name", "Mr. Pirate"], ["shelter_id", 552], ["created_at", "2021-10-27 23:39:41.446038"], ["updated_at", "2021-10-27 23:39:41.446038"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.5ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 3], ["breed", "shorthair"], ["name", "Clawdia"], ["shelter_id", 552], ["created_at", "2021-10-27 23:39:41.447855"], ["updated_at", "2021-10-27 23:39:41.447855"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.3ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 8], ["breed", "sphynx"], ["name", "Lucille Bald"], ["shelter_id", 554], ["created_at", "2021-10-27 23:39:41.449371"], ["updated_at", "2021-10-27 23:39:41.449371"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mPet Create (0.2ms)[0m [1m[32mINSERT INTO "pets" ("adoptable", "age", "breed", "name", "shelter_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["adoptable", true], ["age", 5], ["breed", "ragdoll"], ["name", "Ann"], ["shelter_id", 552], ["created_at", "2021-10-27 23:39:41.450498"], ["updated_at", "2021-10-27 23:39:41.450498"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.3ms)[0m [1m[34mSELECT COUNT(*) FROM "pets" WHERE "pets"."shelter_id" = $1[0m [["shelter_id", 552]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.9ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.467140"], ["updated_at", "2021-10-27 23:39:41.467140"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (1.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 128], ["created_at", "2021-10-27 23:39:41.485629"], ["updated_at", "2021-10-27 23:39:41.485629"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 128], ["created_at", "2021-10-27 23:39:41.487892"], ["updated_at", "2021-10-27 23:39:41.487892"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 128], ["created_at", "2021-10-27 23:39:41.489098"], ["updated_at", "2021-10-27 23:39:41.489098"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 128], ["created_at", "2021-10-27 23:39:41.490257"], ["updated_at", "2021-10-27 23:39:41.490257"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.493977"], ["updated_at", "2021-10-27 23:39:41.493977"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 129], ["created_at", "2021-10-27 23:39:41.495400"], ["updated_at", "2021-10-27 23:39:41.495400"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 129], ["created_at", "2021-10-27 23:39:41.496899"], ["updated_at", "2021-10-27 23:39:41.496899"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 129], ["created_at", "2021-10-27 23:39:41.498348"], ["updated_at", "2021-10-27 23:39:41.498348"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 129], ["created_at", "2021-10-27 23:39:41.499414"], ["updated_at", "2021-10-27 23:39:41.499414"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.504533"], ["updated_at", "2021-10-27 23:39:41.504533"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 130], ["created_at", "2021-10-27 23:39:41.505803"], ["updated_at", "2021-10-27 23:39:41.505803"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 130], ["created_at", "2021-10-27 23:39:41.507231"], ["updated_at", "2021-10-27 23:39:41.507231"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 130], ["created_at", "2021-10-27 23:39:41.508577"], ["updated_at", "2021-10-27 23:39:41.508577"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 130], ["created_at", "2021-10-27 23:39:41.509868"], ["updated_at", "2021-10-27 23:39:41.509868"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.514064"], ["updated_at", "2021-10-27 23:39:41.514064"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 131], ["created_at", "2021-10-27 23:39:41.515397"], ["updated_at", "2021-10-27 23:39:41.515397"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 131], ["created_at", "2021-10-27 23:39:41.516643"], ["updated_at", "2021-10-27 23:39:41.516643"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 131], ["created_at", "2021-10-27 23:39:41.517843"], ["updated_at", "2021-10-27 23:39:41.517843"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 131], ["created_at", "2021-10-27 23:39:41.519037"], ["updated_at", "2021-10-27 23:39:41.519037"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.522171"], ["updated_at", "2021-10-27 23:39:41.522171"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 132], ["created_at", "2021-10-27 23:39:41.523474"], ["updated_at", "2021-10-27 23:39:41.523474"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 132], ["created_at", "2021-10-27 23:39:41.524700"], ["updated_at", "2021-10-27 23:39:41.524700"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 132], ["created_at", "2021-10-27 23:39:41.525900"], ["updated_at", "2021-10-27 23:39:41.525900"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 132], ["created_at", "2021-10-27 23:39:41.527084"], ["updated_at", "2021-10-27 23:39:41.527084"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.6ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE (name ILIKE '%Ta%')[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.529889"], ["updated_at", "2021-10-27 23:39:41.529889"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.8ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 133], ["created_at", "2021-10-27 23:39:41.531450"], ["updated_at", "2021-10-27 23:39:41.531450"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 133], ["created_at", "2021-10-27 23:39:41.533296"], ["updated_at", "2021-10-27 23:39:41.533296"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 133], ["created_at", "2021-10-27 23:39:41.534374"], ["updated_at", "2021-10-27 23:39:41.534374"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 133], ["created_at", "2021-10-27 23:39:41.535566"], ["updated_at", "2021-10-27 23:39:41.535566"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."on_call" = $1[0m [["on_call", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.538048"], ["updated_at", "2021-10-27 23:39:41.538048"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 134], ["created_at", "2021-10-27 23:39:41.539356"], ["updated_at", "2021-10-27 23:39:41.539356"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Tanya"], ["veterinary_office_id", 134], ["created_at", "2021-10-27 23:39:41.540731"], ["updated_at", "2021-10-27 23:39:41.540731"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 134], ["created_at", "2021-10-27 23:39:41.542069"], ["updated_at", "2021-10-27 23:39:41.542069"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 134], ["created_at", "2021-10-27 23:39:41.543388"], ["updated_at", "2021-10-27 23:39:41.543388"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.545413"], ["updated_at", "2021-10-27 23:39:41.545413"]]
[1m[35m (0.4ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (1.0ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:41.546880"], ["updated_at", "2021-10-27 23:39:41.546880"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.6ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 135], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 135], ["created_at", "2021-10-27 23:39:41.550641"], ["updated_at", "2021-10-27 23:39:41.550641"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 135], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 135], ["created_at", "2021-10-27 23:39:41.552250"], ["updated_at", "2021-10-27 23:39:41.552250"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 135], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 135], ["created_at", "2021-10-27 23:39:41.553657"], ["updated_at", "2021-10-27 23:39:41.553657"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 136], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 136], ["created_at", "2021-10-27 23:39:41.555142"], ["updated_at", "2021-10-27 23:39:41.555142"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.557059"], ["updated_at", "2021-10-27 23:39:41.557059"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:41.558052"], ["updated_at", "2021-10-27 23:39:41.558052"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.3ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 137], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 137], ["created_at", "2021-10-27 23:39:41.559567"], ["updated_at", "2021-10-27 23:39:41.559567"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 137], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 137], ["created_at", "2021-10-27 23:39:41.561077"], ["updated_at", "2021-10-27 23:39:41.561077"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 137], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.7ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 137], ["created_at", "2021-10-27 23:39:41.562769"], ["updated_at", "2021-10-27 23:39:41.562769"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 138], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 138], ["created_at", "2021-10-27 23:39:41.564628"], ["updated_at", "2021-10-27 23:39:41.564628"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.7ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.574584"], ["updated_at", "2021-10-27 23:39:41.574584"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:41.575999"], ["updated_at", "2021-10-27 23:39:41.575999"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 139], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 139], ["created_at", "2021-10-27 23:39:41.577433"], ["updated_at", "2021-10-27 23:39:41.577433"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 139], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 139], ["created_at", "2021-10-27 23:39:41.578921"], ["updated_at", "2021-10-27 23:39:41.578921"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 139], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 139], ["created_at", "2021-10-27 23:39:41.580408"], ["updated_at", "2021-10-27 23:39:41.580408"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 140], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 140], ["created_at", "2021-10-27 23:39:41.582254"], ["updated_at", "2021-10-27 23:39:41.582254"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.586100"], ["updated_at", "2021-10-27 23:39:41.586100"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:41.587139"], ["updated_at", "2021-10-27 23:39:41.587139"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 141], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 141], ["created_at", "2021-10-27 23:39:41.588579"], ["updated_at", "2021-10-27 23:39:41.588579"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 141], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 141], ["created_at", "2021-10-27 23:39:41.589955"], ["updated_at", "2021-10-27 23:39:41.589955"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 141], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 141], ["created_at", "2021-10-27 23:39:41.591268"], ["updated_at", "2021-10-27 23:39:41.591268"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 142], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 142], ["created_at", "2021-10-27 23:39:41.592572"], ["updated_at", "2021-10-27 23:39:41.592572"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.595216"], ["updated_at", "2021-10-27 23:39:41.595216"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.4ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:41.596368"], ["updated_at", "2021-10-27 23:39:41.596368"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 143], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 143], ["created_at", "2021-10-27 23:39:41.597965"], ["updated_at", "2021-10-27 23:39:41.597965"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 143], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 143], ["created_at", "2021-10-27 23:39:41.599606"], ["updated_at", "2021-10-27 23:39:41.599606"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 143], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 143], ["created_at", "2021-10-27 23:39:41.600962"], ["updated_at", "2021-10-27 23:39:41.600962"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 144], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 144], ["created_at", "2021-10-27 23:39:41.602348"], ["updated_at", "2021-10-27 23:39:41.602348"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE (name ILIKE '%Vets%')[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.604389"], ["updated_at", "2021-10-27 23:39:41.604389"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:41.605345"], ["updated_at", "2021-10-27 23:39:41.605345"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 145], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 145], ["created_at", "2021-10-27 23:39:41.606610"], ["updated_at", "2021-10-27 23:39:41.606610"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 145], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 145], ["created_at", "2021-10-27 23:39:41.607929"], ["updated_at", "2021-10-27 23:39:41.607929"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 145], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 145], ["created_at", "2021-10-27 23:39:41.609220"], ["updated_at", "2021-10-27 23:39:41.609220"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 146], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 146], ["created_at", "2021-10-27 23:39:41.610544"], ["updated_at", "2021-10-27 23:39:41.610544"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.4ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" ORDER BY "veterinary_offices"."created_at" DESC[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.8ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.613002"], ["updated_at", "2021-10-27 23:39:41.613002"]]
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.7ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:41.614635"], ["updated_at", "2021-10-27 23:39:41.614635"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 147], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 147], ["created_at", "2021-10-27 23:39:41.616482"], ["updated_at", "2021-10-27 23:39:41.616482"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 147], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 147], ["created_at", "2021-10-27 23:39:41.617790"], ["updated_at", "2021-10-27 23:39:41.617790"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 147], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.2ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 147], ["created_at", "2021-10-27 23:39:41.618965"], ["updated_at", "2021-10-27 23:39:41.618965"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 148], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 148], ["created_at", "2021-10-27 23:39:41.620102"], ["updated_at", "2021-10-27 23:39:41.620102"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.8ms)[0m [1m[34mSELECT veterinary_offices.*, count(veterinarians.id) AS vets_count FROM "veterinary_offices" LEFT OUTER JOIN veterinarians ON veterinarians.veterinary_office_id = veterinary_offices.id GROUP BY veterinary_offices.id ORDER BY vets_count DESC[0m
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.622803"], ["updated_at", "2021-10-27 23:39:41.622803"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:41.623789"], ["updated_at", "2021-10-27 23:39:41.623789"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 149], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 149], ["created_at", "2021-10-27 23:39:41.625091"], ["updated_at", "2021-10-27 23:39:41.625091"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 149], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 149], ["created_at", "2021-10-27 23:39:41.626493"], ["updated_at", "2021-10-27 23:39:41.626493"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 149], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.5ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 149], ["created_at", "2021-10-27 23:39:41.627905"], ["updated_at", "2021-10-27 23:39:41.627905"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 150], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.6ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 150], ["created_at", "2021-10-27 23:39:41.629534"], ["updated_at", "2021-10-27 23:39:41.629534"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 149]]
[1m[35m (0.5ms)[0m [1m[34mSELECT COUNT(*) FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1[0m [["veterinary_office_id", 150]]
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.633540"], ["updated_at", "2021-10-27 23:39:41.633540"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:41.634549"], ["updated_at", "2021-10-27 23:39:41.634549"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 151], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 151], ["created_at", "2021-10-27 23:39:41.635747"], ["updated_at", "2021-10-27 23:39:41.635747"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 151], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 151], ["created_at", "2021-10-27 23:39:41.637071"], ["updated_at", "2021-10-27 23:39:41.637071"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 151], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 151], ["created_at", "2021-10-27 23:39:41.638330"], ["updated_at", "2021-10-27 23:39:41.638330"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 152], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 152], ["created_at", "2021-10-27 23:39:41.639577"], ["updated_at", "2021-10-27 23:39:41.639577"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.3ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 ORDER BY "veterinarians"."name" ASC[0m [["veterinary_office_id", 151], ["on_call", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.3ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.642364"], ["updated_at", "2021-10-27 23:39:41.642364"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:41.643339"], ["updated_at", "2021-10-27 23:39:41.643339"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 153], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 153], ["created_at", "2021-10-27 23:39:41.644601"], ["updated_at", "2021-10-27 23:39:41.644601"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 153], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.9ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 153], ["created_at", "2021-10-27 23:39:41.645895"], ["updated_at", "2021-10-27 23:39:41.645895"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.2ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 153], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 153], ["created_at", "2021-10-27 23:39:41.647998"], ["updated_at", "2021-10-27 23:39:41.647998"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 154], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 154], ["created_at", "2021-10-27 23:39:41.649392"], ["updated_at", "2021-10-27 23:39:41.649392"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.2ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2[0m [["veterinary_office_id", 153], ["on_call", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Best Vets"], ["created_at", "2021-10-27 23:39:41.651689"], ["updated_at", "2021-10-27 23:39:41.651689"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Create (0.2ms)[0m [1m[32mINSERT INTO "veterinary_offices" ("boarding_services", "max_patient_capacity", "name", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["boarding_services", true], ["max_patient_capacity", 20], ["name", "Vets R Us"], ["created_at", "2021-10-27 23:39:41.652622"], ["updated_at", "2021-10-27 23:39:41.652622"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 155], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", false], ["review_rating", 10], ["name", "Sam"], ["veterinary_office_id", 155], ["created_at", "2021-10-27 23:39:41.653871"], ["updated_at", "2021-10-27 23:39:41.653871"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 155], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 10], ["name", "Taylor"], ["veterinary_office_id", 155], ["created_at", "2021-10-27 23:39:41.655217"], ["updated_at", "2021-10-27 23:39:41.655217"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 155], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.3ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 8], ["name", "Jim"], ["veterinary_office_id", 155], ["created_at", "2021-10-27 23:39:41.656551"], ["updated_at", "2021-10-27 23:39:41.656551"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
[1m[36mVeterinaryOffice Load (0.1ms)[0m [1m[34mSELECT "veterinary_offices".* FROM "veterinary_offices" WHERE "veterinary_offices"."id" = $1 LIMIT $2[0m [["id", 156], ["LIMIT", 1]]
[1m[36mVeterinarian Create (0.4ms)[0m [1m[32mINSERT INTO "veterinarians" ("on_call", "review_rating", "name", "veterinary_office_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["on_call", true], ["review_rating", 9], ["name", "Sarah"], ["veterinary_office_id", 156], ["created_at", "2021-10-27 23:39:41.657818"], ["updated_at", "2021-10-27 23:39:41.657818"]]
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
[1m[36mVeterinarian Load (0.4ms)[0m [1m[34mSELECT "veterinarians".* FROM "veterinarians" WHERE "veterinarians"."veterinary_office_id" = $1 AND "veterinarians"."on_call" = $2 AND (review_rating >= 9)[0m [["veterinary_office_id", 155], ["on_call", true]]
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m